summaryrefslogtreecommitdiffstats
path: root/widgets/src/DiskOverview.c
Commit message (Collapse)AuthorAgeFilesLines
* Ignore double clicks on the DiskOverviews (#902467).Chris Lumens2013-01-311-1/+3
| | | | | | | The signal handler was getting called three times on double-click: once for the double-click, once for the first click, and once for the second click. This resulted in the background getting shown as if the disk were selected, even though everything else indicated it was not.
* Add device node name information to the storage spoke and disk cart (#902617).Chris Lumens2013-01-311-31/+22
|
* DiskOverview widget selection color correction (mizmo).Chris Lumens2012-11-131-5/+3
| | | | | | | | | Previously, the disk overview widget (visible on the first storage screen) would display black text on a blue-colored background for selected items. Attempts to set the foreground color to white using GTK overrides proved futile, so this patch removes all color overrides and instead uses GTK state flag setting to achieve the desired affect: unselected text is black on white; selected text is white on blue.
* Mark/unmark some strings for translation, as appropriate.Chris Lumens2012-08-151-1/+1
|
* Finally, port the hand cursor to DiskOverviews as well.Chris Lumens2012-06-211-0/+20
| | | | I knew I'd forgotten something when I did this for MountpointSelectors.
* Allow selecting DiskOverviews via the keyboard.Chris Lumens2012-01-241-41/+55
| | | | | | | | | | Note the "selected" -> "chosen" change. "selected" means something specific to GTK, and it doesn't mean what I thought. Thus, I am now using "chosen" to mean you have hit enter/space on the DiskOverview and made it part of the install. This also gets rid of the rounded corner piece, since I was unable to make that work with the keyboard focus (for now).
* Add style info to DiskOverview so rounded corners on selection work.Chris Lumens2012-01-091-0/+14
| | | | | | | This could go into an external CSS file instead, but then I have to worry about loading it, and packaging it, and what the proper location should be, and all that kind of stuff. I could just shove it into a variable and be done with it.
* Make DiskOverviews take up less vertical space and give them a border.Chris Lumens2012-01-091-0/+2
|
* Make the DiskOverview icon quite a bit smaller.Chris Lumens2012-01-091-3/+5
| | | | | 200px makes it take up entirely too much of the screen. 125px is a better compromise between the look we're going for and screen space usage.
* Mark more strings for translation.Chris Lumens2012-01-091-4/+4
|
* Show user-specified disk size.David Lehman2012-01-061-1/+1
|
* Break GTK_STATE_FLAG_SELECTED setting out into its own function.Chris Lumens2011-12-211-6/+8
| | | | | | With the current setup, what happens is you have to pass the opposite value from what you want into set_selected because a_d_o_clicked negates whatever a_d_o_set_selected. Whoops.
* No longer use the deprecated Gtk{H,V}Box and GtkHButtonBox constructors.Chris Lumens2011-12-081-1/+1
| | | | | | Instead I'm using the slightly less deprecated GtkBox and GtkButtonBox, though those will have to be converted to GtkGrid eventually. However that is a much bigger change.
* Add our custom GTK+ widgets in as a subdirectory and subpackage.Chris Lumens2011-11-101-0/+347