summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
Commit message (Collapse)AuthorAgeFilesLines
* (Gtk2::ComboBox->set_text) better error messageThierry Vignaud2004-08-061-1/+1
|
* (create_scrolled_window) adding 6px as left margin for TextView in scrolled ↵Thierry Vignaud2004-08-061-0/+1
| | | | Window
* (Gtk2::ComboBox->set_text) actually print a warning if we failledThierry Vignaud2004-08-041-0/+1
|
* let's system wide config not override user's localeThierry Vignaud2004-08-041-1/+1
|
* (create_dialog) only add space between icon and text if there'sThierry Vignaud2004-08-031-2/+4
| | | | | actually an icon
* (create_notebook) reuse gtkappend_page()Thierry Vignaud2004-08-031-1/+1
|
* (create_dialog) do not show separator by defaultThierry Vignaud2004-08-031-0/+1
|
* (_create_dialog) sanitize dialogs/popups:Thierry Vignaud2004-08-031-1/+2
| | | | | | - set a border around it - add more space between the icon and the text
* (gtkappend_page) name parameters, enabling perl_checker to check callers' callThierry Vignaud2004-08-031-3/+3
| | | | | signature
* (create_packtable) set a border around packtablesThierry Vignaud2004-08-031-1/+1
|
* fix inverted commentsThierry Vignaud2004-08-021-3/+3
|
* (gtktext_insert) merge with text_append() from logdrake:Thierry Vignaud2004-08-021-8/+42
| | | | | | | | - name parameters - provide fast text insertion by using named tags instead of anonymous tags. this is especially usefull in order to speed up programs that use quite a lot of identical tags such as logdrake (#8412) and rpmdrake
* (shrink_topwindow) drop Gtk+-2.[02]x supportThierry Vignaud2004-07-301-5/+1
|
* Redundant line.Rafael Garcia-Suarez2004-07-261-1/+0
|
* use print + exit instead of diePascal Rigaux2004-06-301-1/+1
| | | | | (so that standalone tools don't need to do it by hand)
* make perl_checker a little more happyPascal Rigaux2004-06-281-1/+1
|
* catch missing wizard pixmap, otherwise we end up with WizardWindow being nonPascal Rigaux2004-06-281-1/+2
| | | | | shown and error messages can't pop up
* disallow switching to expert mode using Alt-ePascal Rigaux2004-06-281-3/+0
|
* ->set_title doesn't like title undef, give it '' insteadPascal Rigaux2004-06-221-2/+2
| | | | | (to remove ugly warnings at install)
* kill warningsThierry Vignaud2004-06-171-1/+1
|
* when wizcancel occurs, ugtk2 object is not destroyed (the garbage collector ↵Pascal Rigaux2004-06-011-1/+1
| | | | | | | seems to have some pbs taking care of this, but since many callbacks using it are registered, it's no wonder) (fixes pressing "Cancel" on a ->ask_warn in wizard mode)
* (set_text): fix "cleanups"Pascal Rigaux2004-06-011-6/+4
|
* (set_text) cleanupsThierry Vignaud2004-06-011-2/+2
|
* still provide compat stuff for OptionMenu (#9826) until all tools areThierry Vignaud2004-05-241-1/+41
| | | | | converted
* (Gtk2::OptionMenu->new) kill debug messageThierry Vignaud2004-05-181-1/+1
|
* (Gtk2::OptionMenu) transparently replace obsolete OptionMenu widget byThierry Vignaud2004-05-181-13/+14
| | | | | the new ComboBox widget
* better error logging when gtkcreate_img or gtkcreate_pixbuf can't find the imagePascal Rigaux2004-05-131-2/+2
|
* perl_checker compliancePascal Rigaux2004-05-111-2/+2
|
* (shrink_topwindow) support both 10.0 and cookerThierry Vignaud2004-04-231-1/+5
|
* create frame with a border witdth (titi rulez)Damien Chaumette2004-04-231-1/+6
|
* (shrink_topwindow) fix faillure with perl-Gtk+-1.04x (#9411)Thierry Vignaud2004-04-061-1/+1
|
* space cleanupThierry Vignaud2004-04-011-1/+1
|
* fix relative file names (mostly (only?) for debugging)Pascal Rigaux2004-03-301-1/+1
|
* - fix _find_imgfile()Pascal Rigaux2004-03-191-8/+13
| | | | | - cleanup
* new helper function may_set_icon that takes care of missing wiz_default_up ↵Pascal Rigaux2004-03-181-4/+10
| | | | during install
* (_create_dialog) set x11 icon for dialogs tooThierry Vignaud2004-03-171-0/+1
|
* (new) fix x11 icon for Gtk2::PlugThierry Vignaud2004-03-171-2/+1
|
* (_find_imgfile) prevent matching subdirectory (eg: harddrake)Thierry Vignaud2004-03-171-1/+1
|
* fix typoPascal Rigaux2004-03-161-1/+1
|
* - add $ugtk2::wm_icon (esp. for park-rpmdrake)Pascal Rigaux2004-03-161-4/+5
| | | | | - cleanup, correct indentation
* (new) set x11 icon for non wizard toolsThierry Vignaud2004-03-161-0/+1
|
* (new) set default x11 iconThierry Vignaud2004-03-161-0/+3
|
* (gtktext_insert) if we want anonymous tags, just create anonymous tagsThierry Vignaud2004-03-111-4/+3
| | | | | | instead of creating fake tag names that we just discard after (rand is not guarranted to not return the same number twice...)
* (Gtk2::WrappedLabel::new) fix unusing labelThierry Vignaud2004-03-081-1/+1
|
* (Gtk2::WrappedLabel::new) enable to alter default alignmentThierry Vignaud2004-03-081-2/+2
|
* enable exception managment even at install time (installer set $::no_ugtk_init)Thierry Vignaud2004-03-041-1/+1
|
* (create_packtable) wrap labels by defaultThierry Vignaud2004-03-011-1/+1
|
* (Gtk2::WrappedLabel::new) left align labels by defaultThierry Vignaud2004-03-011-1/+1
|
* (set_back_pixmap) export itThierry Vignaud2004-02-271-2/+2
|
* (Gtk2::Banner::new) add o_otions ref hash parameter, thus enabling toThierry Vignaud2004-02-261-2/+3
| | | | | override text position (eg: for mcc about dialog)