Commit Graph

118 Commits

Author SHA1 Message Date
Phillip Stephens db9e911a23
Merge pull request #17 from lioncash/curve
CurveEditor: Use std::array where applicable
2019-08-25 09:00:15 -07:00
Phillip Stephens 2b09d86df4
Merge pull request #16 from lioncash/const
ADSREditor: Make colors const
2019-08-25 09:00:07 -07:00
Lioncash db805075d9 Editor/KeymapEditor: Use std::array where applicable
Strongly enforces the type of the array and allows removing quite a few
hardcoded size values.
2019-08-25 08:23:23 -04:00
Lioncash b1ab67f8c2 CurveEditor: Use std::array where applicable
Allows simplifying how redo/undo data gets moved around and also
eliminates a few hardcoded magic values for sizes.
2019-08-25 06:08:15 -04:00
Lioncash 532f3a5265 ADSREditor: Use const where applicable
Enforces immutability and makes for less mental book-keeping in drawing
code.
2019-08-25 05:30:37 -04:00
Lioncash c736fdd00d ADSREditor: Make colors const
These aren't intended to be modified by anything, so these can be made
const.
2019-08-25 05:11:55 -04:00
Lioncash a016b72ea6 CMakeLists: Migrate Qt checking over to using components
Qt has since made their library usable with the components system within
CMake, so we can just use that to simplify the library finding and linking.
2019-08-25 05:02:32 -04:00
Phillip Stephens cec062797e
Merge pull request #13 from lioncash/qt
Editor: Use Qt-5 signal/slot connections where applicable
2019-08-25 01:38:49 -07:00
Lioncash 43eff31412 Editor: Use Qt 5 signal/slot connections where applicable
Migrates the UI signals and slots over to the new Qt 5 syntax. This
syntax is nicer, as the compiler can report errors at compile-time, as
opposed to the other method which would require a runtime error to
indicate any issues with the signals and slots.
2019-08-25 04:13:36 -04:00
Lioncash 67c64a2d4e General: Make use of override where applicable
Continues the use of override.
2019-08-25 01:28:36 -04:00
Jack Andersen b0e4973c64 Massive fmtlib refactor 2019-07-19 18:23:25 -10:00
Jack Andersen 2a3444400e Better CMake dependency handling 2019-06-11 16:02:52 -10:00
Jack Andersen 1b10016369 Fix some compilation warnings 2019-04-06 18:59:49 -10:00
Jack Andersen e04603bb7d Fix SoundMacro generation for SampleView 2019-03-09 23:13:17 -10:00
Jack Andersen a4b8946ee2 Ensure all ObjectIDs are unique project-wide 2019-02-28 10:34:26 -10:00
Jack Andersen 7719459ac7 Switch to lzokay library 2018-12-19 17:45:26 -10:00
Jack Andersen c1c47c51eb Update translation file 2018-12-07 20:45:52 -10:00
Jack Andersen a7a408cc66 New code style refactor 2018-12-07 19:20:09 -10:00
Jack Andersen 885a2d2154 Windows build fixes 2018-10-14 10:10:33 -10:00
Jack Andersen dbd48a39cc Convert to pragma once 2018-10-06 17:40:25 -10:00
Jack Andersen 81f0a91569 Looping SNG support; bug fixes 2018-09-08 11:34:01 -10:00
Jack Andersen 6a7f32a29d Bug fixes for MP2 extraction 2018-09-02 14:43:05 -10:00
Jack Andersen 9cc4bdefd0 Various model editing bug fixes 2018-08-30 10:34:10 -10:00
Jack Andersen 2d4fd3493e Merge branch 'master' of ssh://git.axiodl.com:6431/AxioDL/amuse 2018-08-29 22:23:00 -10:00
Jack Andersen 59f99d0b99 Better unsaved project warning 2018-08-29 22:19:53 -10:00
Jack Andersen 68f0f2e769 Use asynchronous file dialogs 2018-08-29 22:16:37 -10:00
Jack Andersen 4fc5dfdc76 macOS fixes 2018-08-27 17:48:53 -10:00
Jack Andersen 33d2cc9ef1 Windows build fixes 2018-08-25 21:58:04 -10:00
Jack Andersen 19c5443e9e Bug fixes, xref search, more context menus 2018-08-25 18:57:02 -10:00
Jack Andersen 27cdee0c14 Clipboard support and various bug fixes 2018-08-24 22:34:04 -10:00
Jack Andersen cefa0ac18c Ensure all post-show widgets are constructed with a parent 2018-08-19 10:42:11 -10:00
Jack Andersen 303877655f Fixes for Windows 2018-08-19 10:05:39 -10:00
Jack Andersen 08988fe3ec Group export and various bug fixes 2018-08-18 14:28:52 -10:00
Jack Andersen fec074ad30 Studio setup window and volume LUT 2018-08-15 20:26:44 -10:00
Jack Andersen 5e89954094 More undo commands and pitch/mod coding fix 2018-08-13 22:36:02 -10:00
Jack Andersen 277e78c14b Vastly improved node insertion/deletion 2018-08-10 20:31:10 -10:00
Jack Andersen 45cb6be3c5 Implement songs import function 2018-08-09 22:11:08 -10:00
Jack Andersen d24e06f101 All editors implemented 2018-08-09 20:19:23 -10:00
Jack Andersen eff832bb8c Implement SongGroupEditor 2018-08-08 21:42:17 -10:00
Jack Andersen 32deea8341 Implement LayersEditor 2018-08-06 21:12:30 -10:00
Jack Andersen 2b45f69ff4 Add support for Keymap playback 2018-08-05 18:48:03 -10:00
Jack Andersen 409d52c120 Initial KeymapEditor implementation 2018-08-05 18:20:42 -10:00
Jack Andersen 2abed18784 Finish CurveEditor implementation 2018-08-04 12:05:01 -10:00
Jack Andersen c2a242022a Use manual Qt macros in CMake 2018-08-03 16:31:47 -10:00
Jack Andersen 57cbbf24b1 Implement ADSREditor 2018-08-03 16:07:34 -10:00
Jack Andersen 721dd361fa Finish SampleEditor implementation 2018-08-02 17:45:48 -10:00
Jack Andersen d062a087c5 SampleEditor rendering fixes 2018-07-31 14:49:05 -10:00
Jack Andersen 6f0a26a86c Work on SampleEditor 2018-07-30 22:04:43 -10:00
Jack Andersen f00904dd76 Subclass delete button rather than use QSS 2018-07-29 20:34:01 -10:00
Jack Andersen 708ed599ae Merge branch 'athena-refactor' of ssh://git.axiodl.com:6431/AxioDL/amuse into athena-refactor 2018-07-29 20:22:07 -10:00
Jack Andersen 8d24e19989 Initial SampleEditor 2018-07-29 20:20:03 -10:00
Phillip Stephens e0f4fdd959 Add hover state to Macro Delete button 2018-07-28 21:09:30 -07:00
Jack Andersen 16745c9bf8 ObjToken refactor and Sample nodes 2018-07-28 17:37:06 -10:00
Jack Andersen f5984141fd Implement amuse playback 2018-07-27 18:34:29 -10:00
Jack Andersen cb24322fc1 Integrate undo infrastructure with SoundMacroEditor 2018-07-25 17:41:48 -10:00
Jack Andersen ca81c07600 Add translation infrastructure 2018-07-24 20:01:01 -10:00
Jack Andersen 441a3dbfd9 Work on SoundMacroEditor 2018-07-21 17:45:47 -10:00
Jack Andersen 321c2d9a3c Finish SoundMacro command introspection. Initial work on SoundMacro
editor
2018-07-19 20:38:09 -10:00
Jack Andersen f50ee6e8f1 More work on Amuse Editor 2018-07-17 21:39:26 -10:00
Jack Andersen 3f265cdb46 Initial ProjectModel implementation 2018-07-16 18:48:38 -10:00
Jack Andersen 7a38fd0676 Work on project file reading 2018-07-15 21:41:15 -10:00
Jack Andersen 26cfa07f77 More athena refactoring 2018-07-14 20:10:50 -10:00
Jack Andersen 4c884d019d Lots of foundational work for Amuse editor 2018-07-13 20:06:33 -10:00
Jack Andersen 1e8b6e599c Add FaceGrey image 2018-07-09 16:06:45 -10:00
Jack Andersen cdc720b8a7 Work on amuse GUI, use C++ linking for audio decoders 2018-07-09 11:05:31 -07:00
Jack Andersen 912eb7950c Add amuse-gui .rc in CMake 2018-03-23 11:54:52 -10:00
Phillip Stephens 4146cdd049 Rename mainwindow.ui to MainWindow.ui 2018-03-15 16:17:00 -07:00
Jack Andersen f5a0a46453 Stub editor application 2018-03-14 14:25:29 -10:00