Jasper St. Pierre
f89f595d08
Add gtkactionbar.ui.h
2014-02-23 16:07:38 -05:00
Matthias Clasen
89a264de91
about dialog: protect against gtk_widget_show_all
...
Normally, a GtkAboutDialog is shown using the convenience
API. But if you manually construct one and show it by calling
gtk_widget_show_all() on it, the license tab would show up
uninvited. Fix that.
https://bugzilla.gnome.org/show_bug.cgi?id=724411
2014-02-21 21:15:52 -05:00
Marek Kasik
7134ededfd
printing: Fix visibility of tabs in print dialog
...
"Job", "Image Quality", "Color", "Finishing" and "Advanced" tabs
shouldn't be shown if there is no printer selected.
https://bugzilla.gnome.org/show_bug.cgi?id=724895
2014-02-21 16:04:53 +01:00
William Jon McCann
1e87b82048
file-chooser: make accept action sensitive only when has selection
...
https://bugzilla.gnome.org/show_bug.cgi?id=547988
2014-02-20 15:44:47 -05:00
William Jon McCann
bc41268368
print-dialog: remove shadow in from some of the tabs
2014-02-20 09:19:31 -05:00
Paolo Borelli
d3c2819401
Add a GtkFrame inside GtkActionBar
...
This is needed to set a padding and draw a border since GtkBox does
not honour css padding yet.
https://bugzilla.gnome.org/show_bug.cgi?id=724693
2014-02-18 22:50:36 -05:00
Matthias Clasen
2392b1e534
Make print dialog destruction work
...
This was also causing the templates test to fail.
2014-02-17 21:40:36 -05:00
Matthias Clasen
11834ebf5c
app chooser: Reword a label
...
'Find New Applications' is shorter and less cryptic than 'Find
Applications in Software'.
2014-02-17 06:56:00 -05:00
Matthias Clasen
ef565e2713
action bar: Use a regular box instead of GtkCenterBox
...
GtkBox now supports a centered child, so GtkCenterBox is
no longer needed here.
2014-02-16 23:02:54 -05:00
Matthias Clasen
4a208439e6
Raleigh: fix a typo
...
titlebar is a style class, so it needs a .
2014-02-14 15:33:47 -05:00
Matthias Clasen
c1def9c224
Forgotten file
2014-02-14 15:33:26 -05:00
Matthias Clasen
9678c92112
Fix a typo
...
Thanks to Thomas A. Stillings for spotting it.
2014-02-14 11:56:48 -05:00
Matthias Clasen
f217af54ca
app chooser: Add a search bar
...
This replaces the treeview typeahead popup with a GtkSearchBar,
and adds a search button to the header bar (if we have one).
https://bugzilla.gnome.org/show_bug.cgi?id=724218
2014-02-14 07:05:13 -05:00
Matthias Clasen
e30f5dd00d
color chooser: Make nonresizable by default
...
The color chooser does not contain any scrollable content,
therefore it should not be resizable.
2014-02-14 07:05:13 -05:00
William Jon McCann
9a5f7c7978
Use an action bar for the conficts ui in the print dialog
2014-02-13 20:59:26 -05:00
William Jon McCann
283804c0bf
Set a default spacing on action bars
2014-02-13 20:59:25 -05:00
William Jon McCann
a121da3bb1
Set no border on notebook in print dialog
2014-02-13 20:59:25 -05:00
Matthias Clasen
352ea3a48d
message-dialog: deprecate the image field
...
We had already set the image to be hidden in the .ui file.
This patch removes the image altogether, and deprecates the
property, setter and getter.
If an image is explicitly put with the setter, it is still
shown, so to not break existing users of this API.
Based on a patch by Jon McCann.
2014-02-13 20:41:29 -05:00
Matthias Clasen
6578c9d876
Modernize the app chooser dialog
...
This is according to suggestions in
https://bugzilla.gnome.org/show_bug.cgi?id=724218
2014-02-13 00:14:42 -05:00
William Jon McCann
d0a654e4b9
Add new ActionBar
...
https://bugzilla.gnome.org/show_bug.cgi?id=723929
2014-02-12 08:08:03 -05:00
Matthias Clasen
f13b3e3aeb
Add minimal popover theming to Raleigh
...
Add background and border, so the popover boundaries are visible.
2014-02-05 01:10:33 -05:00
Matthias Clasen
841a8d811a
Update gtkvolumebutton.ui.h
...
Removing the tooltips removed some strings.
2014-02-03 16:43:45 -05:00
Matthias Clasen
f058b402e4
GtkVolumeButton: Remove tooltips
...
Showing tooltips on top of a transient popup does not work
out well, and is not really necessary here. At the same time,
remove the unnecessary repetitions of properties. In particular,
setting the label of the buttons here defeats the scale buttons
use of symbolic icons.
https://bugzilla.gnome.org/show_bug.cgi?id=723181
2014-02-03 15:43:24 -05:00
Matthias Clasen
c46b1c2a05
GtkScaleButton: Use a popover
...
This works better than the contortions we're currently doing
with an undecorated dialog, and grabs.
https://bugzilla.gnome.org/show_bug.cgi?id=723181
2014-02-03 15:43:24 -05:00
Jasper St. Pierre
328155d8b3
Update ui.h file for GtkFileChooserDefault rename
2014-01-31 15:20:38 -05:00
William Jon McCann
6a285daa79
assistant: add text-button style class
...
https://bugzilla.gnome.org/show_bug.cgi?id=723212
2014-01-29 20:56:21 -05:00
William Jon McCann
8ea33c29d7
assistant: make button labels match mockups
...
https://bugzilla.gnome.org/show_bug.cgi?id=723212
2014-01-29 20:56:21 -05:00
William Jon McCann
ec10bbd6f5
assistant: add ability to use header bar
...
https://bugzilla.gnome.org/show_bug.cgi?id=723212
2014-01-29 20:56:20 -05:00
William Jon McCann
d87ea4776a
Merge GtkFileChooserWidget and GtkFileChooserDefault
...
It seems that alternate implementations of GtkFileChooserWidget
never materialized. The split between GtkFileChooserWidget and
GtkFileChooserDefault is awkward. The immediate problem is that
it makes it difficult to document the keybinding signals. So it
makes sense to drop the abstraction and just have one thing.
https://bugzilla.gnome.org/show_bug.cgi?id=723157
2014-01-28 23:09:42 -05:00
Matthias Clasen
3e67b57396
Print dialog: Use baseline alignment in page setup tab
...
Based on a patch from
https://bugzilla.gnome.org/show_bug.cgi?id=722722
2014-01-27 23:30:37 -05:00
Nikita Churaev
40ccb8e79c
Fix vertical alignment of labels in "Paper" section of the print dialog
...
https://bugzilla.gnome.org/show_bug.cgi?id=722722
2014-01-27 23:30:37 -05:00
Marek Kasik
8418e6422f
printing: Enable search through locations in printers list
...
Add printer_compare() function for comparing printers according
to their names and locations. It is possible to search by multiple
keys separated by space or tabulator using logical conjunction.
Based on patch by William Hua.
https://bugzilla.gnome.org/show_bug.cgi?id=692931
2014-01-27 16:40:43 +01:00
Ignacio Casal Quinteiro
62fe7ca077
win32: scale slider with marks was off by 2 pixels
2014-01-27 09:43:17 +01:00
Matthias Clasen
86972cee30
Revert "resources: Make Raleigh the real name of the theme"
...
This reverts commit 6fa703b506
.
This did not work after all - we're trying to load the theme
css by its name, and the alias makes that not work.
2014-01-25 14:02:52 -05:00
Ignacio Casal Quinteiro
bfcc6c015e
win32: set color for scale marks
2014-01-24 18:27:43 +01:00
Ignacio Casal Quinteiro
f7a3d54a76
win32: add margin to scale trough
2014-01-24 17:57:59 +01:00
Ignacio Casal Quinteiro
b4ff954218
win32: add more width to the slider to not cut it when using marks
2014-01-24 17:30:28 +01:00
William Jon McCann
6fa703b506
resources: Make Raleigh the real name of the theme
...
And make gtk-default.css an alias to it.
2014-01-24 07:55:00 -05:00
William Jon McCann
4a11acdc8c
resources: move resources into a subdirectory
2014-01-23 21:04:59 -05:00