Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix event sound generation for volume changes | Lennart Poettering | 2009-08-27 | 9 | -74/+68 |
| | |||||
* | only assume that the minimal volume is silence for devices that can do dB ↵ | Lennart Poettering | 2009-08-27 | 1 | -1/+2 |
| | | | | volumes | ||||
* | use fallback icon scheme for stream icons, too | Lennart Poettering | 2009-08-26 | 1 | -35/+36 |
| | |||||
* | glade: minor alignment fixes | Lennart Poettering | 2009-07-01 | 1 | -0/+2 |
| | |||||
* | Restructure the class inheritance a bit. | Colin Guthrie | 2009-06-28 | 8 | -52/+39 |
| | | | | | | This just shuffles around the streamwidget a bit. The RoleWidget child class is the exception, so try and gear things around SinkInput/SourceOutput widgets more to save repeating the same code too much. | ||||
* | Rename event method to be more indicative of what it does. | Colin Guthrie | 2009-06-28 | 6 | -7/+7 |
| | |||||
* | Rename a variable to make it more generic | Colin Guthrie | 2009-06-27 | 4 | -8/+8 |
| | |||||
* | Add support for changing ports. | Colin Guthrie | 2009-06-27 | 8 | -12/+200 |
| | | | | | | | | | | | This commit adds a combo box for selecting ports. Overall this implementation could have taken two paths: * Implement port selection as combo box. * Implement port selection as a button. I went for the first option as is done in selecting card profiles over the second method used for selecting devices for streams. This seems more like how a config option should be presented as opposed to a runtime type thing. | ||||
* | Don't use a hyperlink to display the device, just use a regular button. | Colin Guthrie | 2009-06-17 | 7 | -47/+24 |
| | | | | I'm not super happy with this style but it's probably more reliable | ||||
* | Do not disable the default button when it's set. | Colin Guthrie | 2009-06-17 | 5 | -15/+10 |
| | | | | | | | I reworked the way this was done so we can easily re-enable this as I think it's clearer when it's inactive (the difference between toggled and not toggled is pretty minor). With this abstraction we could reset the tooltip etc. too. | ||||
* | Hide the terminate button. | Colin Guthrie | 2009-06-17 | 7 | -62/+59 |
| | | | | | | | The terminate button is a last resort and shouldn't be promoted in the UI. This commit hides it behind a right click menu instead. This also hides the 'Set as Fallback' label in the glade file. | ||||
* | More changes in the UI to try and make things neater. | Colin Guthrie | 2009-06-17 | 11 | -208/+249 |
| | | | | | | | | This abandons the combo box approach an instead partially reverts to the popup. We now display a suffix after the stream title saying " on <device>" or " from <device>" where the <device> part looks like a hyperlink and, when clicked, shows the popup to change the device. If there is only one device available, we suppress the whole thing and thus avoid confusion. | ||||
* | Create the event role widget early so that it's always top of the list. | Colin Guthrie | 2009-06-17 | 1 | -3/+5 |
| | |||||
* | Change 'Default' to 'Use as fallback' | Colin Guthrie | 2009-06-17 | 1 | -1/+1 |
| | |||||
* | Move the setBaseVolume()/setSteps() methods to devicewidget (problem found ↵ | Colin Guthrie | 2009-06-17 | 4 | -15/+14 |
| | | | | after rebasing) | ||||
* | Include config.h in the cc file (after rebase) | Colin Guthrie | 2009-06-17 | 1 | -0/+4 |
| | |||||
* | Add a tooltip | Colin Guthrie | 2009-06-17 | 1 | -0/+1 |
| | |||||
* | Wire up all the new UI code. | Colin Guthrie | 2009-06-17 | 14 | -239/+69 |
| | | | | | | | This makes the default button work on sinks/sources, allows the drop down to actually change the sink/source and removes the old menu code. Some names and such are fixed in the glade file too. | ||||
* | Wire up the default toggle button (replaces the old menu) | Colin Guthrie | 2009-06-17 | 2 | -1/+10 |
| | |||||
* | Hook up the device combo box on change event | Colin Guthrie | 2009-06-17 | 1 | -3/+1 |
| | |||||
* | Remove the 'Default [Out|In]put' option from the combo for now. | Colin Guthrie | 2009-06-17 | 1 | -0/+5 |
| | | | | It will be restored when it's actually possible to set/clear the default stream restore db | ||||
* | Set the correct combo index for display purposes | Colin Guthrie | 2009-06-17 | 3 | -0/+14 |
| | |||||
* | Record in a map the combobox indexes vs. the sink/source indexes | Colin Guthrie | 2009-06-17 | 2 | -16/+13 |
| | |||||
* | Add setter/getter methods for sink/source indexes so we can update our combo ↵ | Colin Guthrie | 2009-06-17 | 5 | -7/+29 |
| | | | | boxes current item | ||||
* | Remove the kill menu item now we have a dedicated button | Colin Guthrie | 2009-06-17 | 4 | -10/+2 |
| | |||||
* | Wire up the terminate button | Colin Guthrie | 2009-06-17 | 2 | -0/+5 |
| | |||||
* | Set the pack_start on the deviceCombo | Colin Guthrie | 2009-06-17 | 2 | -0/+2 |
| | |||||
* | Set the mainwindow pointer via an init() method rather than directly via ↵ | Colin Guthrie | 2009-06-17 | 5 | -16/+36 |
| | | | | | | public member variable. This allows us to perform other general initialisation task (such as setting the tree model on the device combo) | ||||
* | Adapt to new UI | Colin Guthrie | 2009-06-17 | 17 | -26/+129 |
| | | | | | The actual wiring up of events and clearing out of old, unused elements is not complete yet, so this is completely non-functional at present. | ||||
* | Rebase the sink/source widgets on the device widget | Colin Guthrie | 2009-06-17 | 5 | -12/+13 |
| | |||||
* | Create a devicewidget based on streamwidget. | Colin Guthrie | 2009-06-17 | 2 | -0/+150 |
| | | | | This will become the base for Output and Input device tabs (as the streamwidget will have a different UI) | ||||
* | Glade UI changes. Code still needs to be updated | Colin Guthrie | 2009-06-17 | 1 | -4/+223 |
| | |||||
* | update po/ | Lennart Poettering | 2009-06-17 | 32 | -767/+1045 |
| | |||||
* | Merge commit 'origin/master-tx' | Lennart Poettering | 2009-06-17 | 24 | -1872/+3244 |
|\ | |||||
| * | Sending translation for Punjabi | aalam | 2009-06-06 | 1 | -23/+24 |
| | | |||||
| * | Sending translation for po/hi.po | rajesh | 2009-06-05 | 1 | -0/+348 |
| | | |||||
| * | Sending translation for Punjabi | jassy | 2009-06-01 | 1 | -10/+10 |
| | | |||||
| * | Sending translation for Punjabi | jassy | 2009-05-26 | 1 | -60/+105 |
| | | |||||
| * | Sending translation for Bengali (India) | runab | 2009-05-26 | 1 | -122/+134 |
| | | |||||
| * | Sending translation for Malayalam | anipeter | 2009-05-06 | 1 | -120/+133 |
| | | |||||
| * | Sending translation for Slovak | feonsu | 2009-05-04 | 1 | -53/+88 |
| | | |||||
| * | Sending translation for po/sr@latin.po | kmilos | 2009-05-03 | 1 | -55/+90 |
| | | |||||
| * | Sending translation for Serbian | kmilos | 2009-05-03 | 1 | -55/+90 |
| | | |||||
| * | Sending translation for French | renault | 2009-05-01 | 1 | -1/+1 |
| | | |||||
| * | Sending translation for French | renault | 2009-05-01 | 1 | -124/+138 |
| | | |||||
| * | Sending translation for Portuguese | ruigo | 2009-04-28 | 1 | -56/+102 |
| | | |||||
| * | Sending translation for Czech | pmkovar | 2009-04-27 | 1 | -62/+97 |
| | | |||||
| * | Sending translation for Assamese | amitakhya | 2009-04-23 | 1 | -121/+132 |
| | | |||||
| * | Sending translation for po/ru.po | stiletto | 2009-04-23 | 1 | -0/+357 |
| | | |||||
| * | Sending translation for Italian | marionline | 2009-04-20 | 1 | -123/+138 |
| | |