summaryrefslogtreecommitdiff
path: root/gtk/gtkassistant.c
Commit message (Collapse)AuthorAgeFilesLines
* assistant: Work around deprecation warningsBenjamin Otte2011-11-081-15/+39
|
* GtkAssistant: Fix problems with gtk_widget_show_all()Bastien Nocera2011-09-231-0/+9
| | | | | | | gtk_widget_show_all() would have shown every single item inside the GtkAssistant sidebar, as well as all the navigation buttons. https://bugzilla.gnome.org/show_bug.cgi?id=659826
* gtk_assistant_remove_page() docs: Fix typo.Murray Cumming2011-09-131-1/+1
|
* GtkAssistant: Fix label alignmentMatthias Clasen2011-09-041-4/+7
| | | | | | | | | Make page titles left-aligned again. Changing from misc alignment to GtkWidget::halign here was a mistake. We can't do that for labels in a size group, as long as labels still pay attention to misc alignment. https://bugzilla.gnome.org/show_bug.cgi?id=658008
* assistant: Use gtk_container_remove() when removing pagesBenjamin Otte2011-07-181-1/+1
| | | | Ensures that we properly emit the "remove" signal.
* Make destroying assistants work againMatthias Clasen2011-07-171-4/+7
| | | | | During destruction, we need to be careful to not ask the content notebook to remove itself from itself.
* Drop unneeded includesMatthias Clasen2011-07-141-1/+0
| | | | We no longer use the private GtkAccessible api here.
* Add gtk_assistant_remove_pageMatthias Clasen2011-07-111-0/+24
| | | | | This was suspiciously missing, considering we have the usual append/prepend/insert_page methods.
* GtkAssistant doesn't notice destroyed pagesMatthew Barnes2011-07-091-85/+98
| | | | | | Listen for GtkContainer::remove signals from the internal notebook. https://bugzilla.gnome.org/show_bug.cgi?id=653705
* assistant: Use gtk_widget_class_set_accessible_type()Benjamin Otte2011-07-061-14/+4
| | | | Less code and no leaks!
* Drop the factory from GtkAssistantAccessibleMatthias Clasen2011-07-051-52/+10
|
* GtkAssistant: improve button labelsMatthias Clasen2011-06-131-3/+9
| | | | | | Forward/Back/Last has been declared strange; so go with something a little more friendly: Continue/Go Back/Finish. https://bugzilla.gnome.org/show_bug.cgi?id=652506
* gtk/gtkassistant: gtk_misc_set_alignment replacingDiego Celix2011-06-101-2/+4
| | | | | | | | Replacing the function gtk_misc_set_alignment () with gtk_widget_set_halign () and gtk_widget_set_valign () in gtk/gtkassistant.c https://bugzilla.gnome.org/show_bug.cgi?id=650762
* gtk: Use const instead G_CONST_RETURNJavier Jardón2011-06-101-1/+1
|
* assistant: pack the sidebar in a frame instead of an event boxCosimo Cecchi2011-05-191-8/+30
| | | | | | | | | | | | | | This has mostly two advantages: - the most obvious one is the theme can render a border around the sidebar if it wants to. - we also can avoid hardcoding a container border width for the sidebar, and just use a padding from the theme. This also allows different themes to define a different padding, etc. The drawback is we must draw the background ourselves, but it's easy enough. https://bugzilla.gnome.org/show_bug.cgi?id=650530
* assistant: remove an useless gtk_widget_reset_style() callCosimo Cecchi2011-05-191-1/+0
| | | | | | | It's not needed to call _reset_style() here, as we did not add the widget to the parent container yet. https://bugzilla.gnome.org/show_bug.cgi?id=650530
* GtkAssistant: make the content expandMatthias Clasen2011-05-101-1/+1
| | | | | Its all about the content, so make sure the content fills the available space.
* GtkAssistant: an new style for assistantsMatthias Clasen2011-05-061-677/+359
| | | | | | | | | | GtkAssistant is widely recognized as a butt-ugly widget. This commit changes its style to look more modern. We deprecate the sidebar and header image properties and don't show them anymore. Instead, page titles are arranged in a sidebar, with the title of the current page shown in highlighted style.
* Fix includes in gtkassistant.cMatthias Clasen2011-02-171-2/+2
| | | | Also fix a bad case in gtk_assistant_accessible_get_n_children.
* GtkAssistant: Use _gtk_accessible_set_factory_typeMatthias Clasen2011-02-171-18/+2
|
* Always chain up in ::style-updatedMatthias Clasen2011-02-071-0/+2
| | | | | This was not handled consistently, but the default handler does useful things, so we should always chain up.
* Protect against giant title fontsMatthias Clasen2011-01-271-1/+3
| | | | | | | We don't want repeated calls to set_title_font to blow up the font size ever more, so reset the font each time. https://bugzilla.gnome.org/show_bug.cgi?id=640712
* Silence new gcc warningsMatthias Clasen2011-01-231-347/+367
| | | | | gcc 4.6.0 has started to warn about set-but-unused variables. So don't do that, then.
* assistant: Fix mapped invariantsBenjamin Otte2011-01-211-1/+9
| | | | gtk_widget_verify_invariants() was complaining, now it's silent.
* Remove gtktypeutils altogetherMatthias Clasen2011-01-041-1/+1
| | | | | | Based on patches by Javier Jardón. https://bugzilla.gnome.org/show_bug.cgi?id=629955
* Update GtkAssistant to GtkStyleContextCarlos Garnacho2011-01-041-27/+33
|
* Fix abi check after recent mergesMatthias Clasen2010-12-051-5/+5
|
* a11y: Use ATK macros and clean up/1 - GtkAssistantEmmanuele Bassi2010-11-301-103/+63
| | | | | | | | | | | ATK provides macros to the same effect as G_DEFINE_TYPE; using these macros has the advantage of removing tons of duplicated code and reducing the maintainership burden. The widgets with inline accessibility implementation should switch to these macros, and clean up the code. https://bugzilla.gnome.org/show_bug.cgi?id=636060
* GtkAssistant: Mention custom pages in the introductionMatthias Clasen2010-10-311-0/+4
|
* gtk: remove "gboolean homogeneous" from gtk_box_new()Michael Natterer2010-10-311-2/+2
| | | | Because it's FALSE in virtually all use cases.
* GtkAssistant: Add custom page typeBastien Nocera2010-10-311-23/+79
| | | | | | | | | | The custom page type will not show any buttons by default, and it is left to the application to add its own buttons instead. The _next_page() and _previous_page() functions can be used for the back and forward buttons used by the application. https://bugzilla.gnome.org/show_bug.cgi?id=576498
* Improve GtkAssistant docsMatthias Clasen2010-10-301-0/+7
|
* Use gtk_box_new() instead gtk_[v|h]box_new()Javier Jardón2010-10-301-1/+1
|
* Remove size_request from GtkAssistantMatthias Clasen2010-10-261-3/+31
|
* Fix resize grip drawing in GtkAssistantMatthias Clasen2010-10-081-0/+3
| | | | | | Chain up in the draw() implementation of GtkAssistant to let GtkWindow draw the resize grip. This avoids black resize grips in GtkAssistant windows.
* Move destroy signal to GtkWidgetJavier Jardón2010-09-261-10/+7
| | | | Also make GtkWidget derive from GInitiallyUnowned
* Move GtkSizeRequest into GtkWidgetBenjamin Otte2010-09-261-16/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | It doesn't make sense to keep them separate as GtkSizeRequest requires a GtkWidget and GtkWidget implements GtkSizeRequest, so you can never have one without the other. It also makes the code a lot easier because no casts are required when calling functions. Also, the names would translate to gtk_widget_get_width() and people agreed that this would be a too generic name, so a "preferred" was added to the names. So this patch moves the functions: gtk_size_request_get_request_mode() => gtk_widget_get_request_mode() gtk_size_request_get_width() => gtk_widget_get_preferred_width() gtk_size_request_get_height() => gtk_widget_get_preferred_height() gtk_size_request_get_size() => gtk_widget_get_preferred_size() gtk_size_request_get_width_for_height() => gtk_widget_get_preferred_width_for_height() gtk_size_request_get_height_for_width() => gtk_widget_get_preferred_height_for_width() ... and moves the corresponding vfuncs to the GtkWidgetClass. The patch also renames the implementations of the vfuncs in widgets to include the word "preferrred".
* assistant: Port to draw vfuncBenjamin Otte2010-09-261-24/+16
|
* Tons of transfer annotationsMatthias Clasen2010-09-211-11/+12
|
* Use gtk_size_request_get_size() instead deprecated gtk_widget_size_request()Javier Jardón2010-09-151-5/+10
| | | | | | | Fixes https://bugzilla.gnome.org/show_bug.cgi?id=629598 Signed-off-by: Javier Jardón <jjardon@gnome.org> Signed-off-by: Tristan Van Berkom <tristanvb@openismus.com>
* Use gtk_size_request_get_size() instead deprecated ↵Javier Jardón2010-09-131-3/+7
| | | | | | gtk_widget_get_child_requisition() Fixes https://bugzilla.gnome.org/show_bug.cgi?id=629177
* gtk/gtkassistant.c: use accessor functions to access GtkWidgetJavier Jardón2010-08-221-21/+40
|
* Use accessor functions to acces GtkContainerJavier Jardón2010-07-131-20/+21
|
* gtkassistant: Move public members to private structureJavier Jardón2010-07-131-92/+101
|
* Use accessor functions to access GtkAccesible variablesJavier Jardón2010-07-131-2/+2
|
* gtk/: fully remove gtkalias hacksJavier Jardón2010-07-101-6/+0
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=623845
* Bug 596428 - GtkAssistant: Support ending with a progress pageMatthew Barnes2010-06-031-7/+57
| | | | | | | | | | | | | - Add gtk_assistant_commit() This function discards the visited pages list so the back button is not shown on the current page, and removes the cancel button from subsequent pages. Use this when information provided thus far cannot be revisited. - Don't show the Forward button on a GTK_ASSISTANT_PAGE_PROGRESS if it's the last page (according to the forward page function). - Append a progress page to the GtkAssistant demo.
* Merge branch 'native-layout-incubator'Matthias Clasen2010-04-301-5/+10
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: configure.in docs/reference/gtk/tmpl/gtkaction.sgml docs/reference/gtk/tmpl/gtkbuilder.sgml gdk/directfb/gdkkeys-directfb.c gdk/gdk.symbols gdk/x11/gdkwindow-x11.c gtk/gtkalignment.c gtk/gtkbox.c gtk/gtkbutton.c gtk/gtkcelleditable.c gtk/gtkfilechooser.c gtk/gtkframe.c gtk/gtkinvisible.c gtk/gtklabel.c gtk/gtkscrolledwindow.c gtk/gtksearchenginetracker.c gtk/gtktextview.c gtk/gtktoolbutton.c gtk/gtktooltip.c gtk/gtkviewport.c gtk/gtkwidget.c gtk/gtkwindow.c po-properties/ca@valencia.po po-properties/es.po po-properties/kn.po po-properties/mr.po po/ca.po po/ca@valencia.po po/el.po po/es.po po/gl.po po/id.po po/kn.po po/lv.po po/mr.po po/th.po
| * Fixed GtkAssistant to not access ->requisition of children directly.Tristan Van Berkom2010-04-181-5/+10
| | | | | | | | | | | | This was causing a 0 height action-area because a GtkBox does not generally update ->requisition with anything useful (call gtk_widget_get_child_requisition() here instead).
| * Don't use GTK_WIDGET_*SET_FLAGS (wid, GTK_MAPPED)Javier Jardón2010-04-031-2/+2
| | | | | | | | | | | | Use new API instead: gtk_widget_set_mapped () https://bugzilla.gnome.org/show_bug.cgi?id=69872