Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix doble space | Thierry Vignaud | 2013-11-24 | 1 | -1/+1 |
| | |||||
* | use simpler Gtk3::ComboBoxText | Thierry Vignaud | 2013-11-24 | 2 | -2/+2 |
| | |||||
* | fix: Gtk-WARNING **: Theme parsing error: diskdrake.css:19:12: Not using ↵ | Thierry Vignaud | 2013-11-24 | 1 | -1/+1 |
| | | | | units is deprecated. Assuming 'px'. | ||||
* | simplify CSS | Thierry Vignaud | 2013-11-24 | 1 | -3/+1 |
| | |||||
* | add set_popdown_strings API to Gtk3::ComboBoxText | Thierry Vignaud | 2013-11-24 | 1 | -0/+9 |
| | |||||
* | add support for ToolButton | Thierry Vignaud | 2013-11-24 | 1 | -0/+13 |
| | |||||
* | workaround only first notification being displayed | Thierry Vignaud | 2013-11-24 | 1 | -1/+4 |
| | | | | | | it looks like we only got the 'closed' signal if the user clicks on it (which is a spec violation: http://www.galago-project.org/specs/notification/0.9/x408.html#signal-notification-closed) | ||||
* | notifications work again | Thierry Vignaud | 2013-11-24 | 1 | -2/+1 |
| | |||||
* | Gtk3::Notify->new => Gtk3::Notify::Notification->new | Thierry Vignaud | 2013-11-24 | 1 | -2/+2 |
| | |||||
* | create_factory_*: drop them | Thierry Vignaud | 2013-11-24 | 1 | -12/+1 |
| | | | | | rationale: ItemFactory was deprecated prior to Gtk3 and we must migrate to UIManager or Builder anyway... | ||||
* | (shrink_topwindow) temporary disable due to Gtk3 regression | Thierry Vignaud | 2013-11-24 | 1 | -0/+1 |
| | |||||
* | OptionMenu has been deprecated prior to Gtk3 | Thierry Vignaud | 2013-11-24 | 1 | -66/+0 |
| | |||||
* | convert to UIManager | Thierry Vignaud | 2013-11-24 | 4 | -53/+85 |
| | |||||
* | Pango->PANGO_WEIGHT_BOLD is not available through introspection | Thierry Vignaud | 2013-11-24 | 2 | -3/+3 |
| | |||||
* | set_authors() needs an array ref | Thierry Vignaud | 2013-11-24 | 2 | -4/+2 |
| | |||||
* | set_url_hook() & set_email_hook() no more exists | Thierry Vignaud | 2013-11-24 | 1 | -8/+0 |
| | |||||
* | fix calling Gtk3::Image->new_from_stock() | Thierry Vignaud | 2013-11-24 | 1 | -1/+1 |
| | |||||
* | fix putting filler at right place | Thierry Vignaud | 2013-11-24 | 1 | -1/+1 |
| | |||||
* | simplify | Thierry Vignaud | 2013-11-24 | 1 | -1/+2 |
| | |||||
* | adapt to get_selected_rows() behavior change in Gtk3 | Thierry Vignaud | 2013-11-24 | 1 | -1/+2 |
| | |||||
* | prevent set_sensitive() to be called with undef parameter | Thierry Vignaud | 2013-11-24 | 1 | -0/+1 |
| | | | | (for drakguard) | ||||
* | fix creating a SpinButton | Thierry Vignaud | 2013-11-24 | 1 | -1/+1 |
| | | | | | | ->{lower} was deleted in the previous line (bug introduced with the first code drop by pixel in commit f6f78109c on Dec 2 2004) | ||||
* | fix computing left part width | Thierry Vignaud | 2013-11-24 | 1 | -1/+1 |
| | |||||
* | Dialog->set_has_separator() no more exists in Gtk3 | Thierry Vignaud | 2013-11-24 | 2 | -3/+0 |
| | |||||
* | (set_back_pixbuf) drop it (now unused) | Thierry Vignaud | 2013-11-24 | 1 | -9/+0 |
| | |||||
* | shrink banner background image (shrink the white part) | Thierry Vignaud | 2013-11-24 | 1 | -0/+0 |
| | |||||
* | disable updating ads titles | Thierry Vignaud | 2013-11-24 | 1 | -1/+2 |
| | | | | | testing latest commit shows that updating ads titles hasn't actually worked for years... | ||||
* | update API for installer | Thierry Vignaud | 2013-11-24 | 2 | -4/+4 |
| | |||||
* | rename a variable | Thierry Vignaud | 2013-11-24 | 1 | -2/+2 |
| | |||||
* | explain who uses it | Thierry Vignaud | 2013-11-24 | 1 | -0/+1 |
| | |||||
* | convert Banner widget to Gtk+3 | Thierry Vignaud | 2013-11-24 | 1 | -43/+36 |
| | | | | | | | | | | | | - Parsing of custom resources: RC -> CSS - signal: 'style-set' => 'style-updated' - Drop our custom draw code - widget is much simpler, using Overlays (due to that(?), we must remove -4 from the vertical padding) Also fix "Unit is missing" fatal error with newer gtk+3.10 Most themes work OK but Oxygen-gtk3... | ||||
* | rename a variable | Thierry Vignaud | 2013-11-24 | 1 | -25/+25 |
| | | | | (makes next commit more readable) | ||||
* | lang package is not needed here | Thierry Vignaud | 2013-11-24 | 1 | -3/+2 |
| | | | | also compute language direction only once | ||||
* | add support for set an image directly from a pixbuf | Thierry Vignaud | 2013-11-24 | 1 | -0/+2 |
| | |||||
* | handle alignment for Images too (needed for banners) | Thierry Vignaud | 2013-11-24 | 1 | -0/+1 |
| | |||||
* | perlish ->style() => ->get_style() | Thierry Vignaud | 2013-11-24 | 3 | -7/+7 |
| | |||||
* | prevent calling CheckButton->set_label() on undef value | Thierry Vignaud | 2013-11-24 | 1 | -2/+2 |
| | |||||
* | fix "Can't locate object method "new_text" via package "Gtk3::ComboBox"" | Thierry Vignaud | 2013-11-24 | 1 | -1/+1 |
| | |||||
* | fix missing parameter in drakx-net | Thierry Vignaud | 2013-11-24 | 1 | -1/+1 |
| | |||||
* | simplify: just use tooltips for service descriptions | Thierry Vignaud | 2013-11-24 | 1 | -19/+1 |
| | |||||
* | drop our now unused cellrenderer implementation | Thierry Vignaud | 2013-11-24 | 1 | -90/+0 |
| | |||||
* | no need to implement our own cell renderer | Thierry Vignaud | 2013-11-24 | 1 | -1/+7 |
| | |||||
* | fix "Can't call method "x" on unblessed reference" | Thierry Vignaud | 2013-11-24 | 1 | -5/+5 |
| | |||||
* | workaround a gtk+3 regression (bgo#711873) | Thierry Vignaud | 2013-11-24 | 2 | -2/+2 |
| | | | | See https://bugzilla.gnome.org/show_bug.cgi?id=711873 | ||||
* | workaround the same segfault when picking the desktop | Thierry Vignaud | 2013-11-24 | 2 | -1/+2 |
| | | | | alter mygtk3 in order to pass a button to join its group | ||||
* | workaround a gtk+3 segfault | Thierry Vignaud | 2013-11-24 | 1 | -1/+1 |
| | |||||
* | perlish ->state() => ->get_state() | Thierry Vignaud | 2013-11-24 | 1 | -1/+1 |
| | |||||
* | perlish $dialog->action_area => $dialog->get_action_area | Thierry Vignaud | 2013-11-24 | 5 | -6/+6 |
| | |||||
* | prevent set_active() to be called with undef parameter | Thierry Vignaud | 2013-11-24 | 3 | -3/+5 |
| | |||||
* | perlish $dialog->vbox => $dialog->get_child | Thierry Vignaud | 2013-11-24 | 5 | -5/+5 |
| |