Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-05-18 | Clean up whitespace | David Robillard | 1 | -2/+0 | |
2021-05-08 | Put events in a namespace and simplify their names | David Robillard | 1 | -16/+17 | |
2021-04-08 | Fix ALSA sequencer port subscriptions | David Robillard | 1 | -20/+22 | |
2021-01-02 | Format all code with clang-format | David Robillard | 1 | -403/+390 | |
2020-12-14 | Clean up includes | David Robillard | 1 | -0/+8 | |
2020-11-29 | Put everything in a namespace | David Robillard | 1 | -2/+5 | |
2020-11-29 | Completely isolate drivers from the rest of the application | David Robillard | 1 | -1/+61 | |
2020-11-29 | Replace attached and detached signals with events | David Robillard | 1 | -5/+3 | |
2020-11-28 | Log all events to message pane | David Robillard | 1 | -5/+1 | |
This is maybe a bit much, or they need to be cleaned up a bit to be more presentable, but I like the transparency. | |||||
2020-11-28 | Clean up includes | David Robillard | 1 | -2/+2 | |
2020-11-28 | Avoid copying port IDs | David Robillard | 1 | -2/+2 | |
2020-11-28 | Abstract out sending of events | David Robillard | 1 | -24/+10 | |
This removes the details of how events are handled from drivers, so the owner can set them up to do anything. For example, a driver could be run in the GUI thread and have its events simply dispatched immediately, but here everything is enqueued to the same queue which is drained later for simplicity. | |||||
2020-11-28 | Refresh by emitting events | David Robillard | 1 | -235/+51 | |
This decouples drivers from the rest of the application, in particular the horrible situation where they were working with the canvas directly, by having them always communicate changes by emitting events. | |||||
2020-11-28 | Factor out getting client and port metadata and send it with events | David Robillard | 1 | -3/+57 | |
2020-11-28 | Clean up order of ALSA event handling | David Robillard | 1 | -19/+26 | |
2020-11-28 | Move PortType to its own header | David Robillard | 1 | -0/+1 | |
2020-11-28 | Move SignalDirection to its own header | David Robillard | 1 | -0/+1 | |
2020-11-28 | Rename ModuleType to SignalDirection | David Robillard | 1 | -8/+9 | |
2020-11-28 | Move handle_event() to separate files | David Robillard | 1 | -0/+1 | |
2020-11-28 | Index clients and ports by ID | David Robillard | 1 | -4/+6 | |
2020-11-28 | Make PatchageEvent a variant | David Robillard | 1 | -18/+13 | |
2020-11-28 | Remove useless doc comments | David Robillard | 1 | -13/+0 | |
2020-11-28 | Simplify driver connection interface | David Robillard | 1 | -34/+11 | |
2020-11-28 | Always index Jack ports and refer to them by name | David Robillard | 1 | -25/+46 | |
The Jack API annoyingly doesn't provide a way to get an ID from a port name. Since notification callbacks apparently don't have to worry about realtime concerns anymore, simply use the full name string as an ID everywhere. This means that every Jack port has a non-null ID, and all ports are always indexed, so the kludges for this in the canvas can be removed. | |||||
2020-11-27 | Fix spelling error in AlsaDriver.cpp | Dennis Braun | 1 | -1/+1 | |
2020-11-27 | Ensure that modules always have an ID | David Robillard | 1 | -1/+3 | |
2020-11-27 | Remove use of PatchagePort from Driver connection interface | David Robillard | 1 | -35/+50 | |
2020-11-27 | Ensure that ports always have an ID | David Robillard | 1 | -4/+6 | |
2020-11-27 | Use a consistent style for log messages | David Robillard | 1 | -21/+24 | |
2020-11-27 | Use prettier names for log methods | David Robillard | 1 | -22/+22 | |
2020-11-27 | Factor out log from Patchage class | David Robillard | 1 | -23/+24 | |
Towards saner dependencies. | |||||
2020-11-27 | Replace boost::format with fmt | David Robillard | 1 | -10/+7 | |
2020-11-27 | Fix shadowing | David Robillard | 1 | -27/+35 | |
2020-11-27 | Fix unused parameter warnings | David Robillard | 1 | -5/+4 | |
2020-11-27 | Don't use else after return | David Robillard | 1 | -7/+12 | |
I don't always agree with this one, but in this case it's reasonable enough. | |||||
2020-11-27 | Fix mismatched parameter names | David Robillard | 1 | -10/+11 | |
2020-11-27 | Use C++ casts | David Robillard | 1 | -1/+1 | |
Unfortunately, the warning needs to stay on because of Gtk and ALSA. | |||||
2020-11-27 | Initialize all members | David Robillard | 1 | -0/+1 | |
2020-11-27 | Use std::mutex | David Robillard | 1 | -2/+3 | |
2020-11-27 | Use consistent naming convention for enum classes | David Robillard | 1 | -12/+12 | |
2020-11-27 | Use enum classes | David Robillard | 1 | -19/+24 | |
2020-11-27 | Always initialize variables | David Robillard | 1 | -13/+13 | |
2020-11-27 | Always use braces around statements | David Robillard | 1 | -14/+25 | |
2020-11-27 | Use auto where appropriate | David Robillard | 1 | -9/+8 | |
2020-11-27 | Use nullptr | David Robillard | 1 | -13/+13 | |
2020-02-09 | Format all code with clang-format | David Robillard | 1 | -73/+90 | |
This configuration tries to get as close to the previous style as possible so the changes aren't too dramatic. It's still far from ideal and the code could use some adaptation, but this makes things much easier to work on. | |||||
2020-02-09 | Remove standard using declarations | David Robillard | 1 | -12/+13 | |
2020-02-09 | Remove unused using declarations | David Robillard | 1 | -6/+0 | |
2019-12-29 | Clean up includes | David Robillard | 1 | -7/+8 | |
2015-02-16 | Distinguish edge color from port color slighly. | David Robillard | 1 | -2/+1 | |
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@5577 a436a847-0d15-0410-975c-d299462d15a1 |