summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
Commit message (Collapse)AuthorAgeFilesLines
...
* fix gtk2::entry->new_with_textThierry Vignaud2003-07-091-1/+1
|
* remove debugging traceThierry Vignaud2003-07-091-1/+0
|
* typo fixThierry Vignaud2003-07-091-1/+1
|
* switch from gtk2-perl to gtk2-perl-xsThierry Vignaud2003-07-091-46/+82
|
* increase gui coherency of drakxtools vs other gtk+ apps: use stock iconsThierry Vignaud2003-07-061-12/+12
|
* (create_dialog) add use_markup in order to hint the usage of pango attributesThierry Vignaud2003-07-011-1/+2
|
* calling Gtk2->set_locale at each ugtk2 object creation should beGuillaume Cottenceau2003-06-271-2/+0
| | | | | | unneeded (Gtk2->init initializes internationalization stuff of Gtk2), and it breaks my setlocale call in rpmdrake
* create_box_with_title: chinese langs also need to always useGuillaume Cottenceau2003-06-181-1/+1
| | | | | | GtkTextView because GtkLabel won't wrap automatically (fixes problems displaying help non-wrapped in the install, #3670)
* change a bit how strings are passed to advertising systemGuillaume Cottenceau2003-06-121-2/+28
| | | | | | so that we don't specify absolute x,y positions for each paragraph, ending with overwritten text in some localizations
* get_text_coord: fix heights handling: use real height of eachGuillaume Cottenceau2003-06-121-8/+19
| | | | | | line rather than default height from font info (which is bugged in japanese)
* get_text_coord: fix wrapping broken (gc sux)Guillaume Cottenceau2003-06-111-1/+1
|
* change ask_browse_tree_info_given_widgets andGuillaume Cottenceau2003-06-111-4/+5
| | | | | | ask_browse_tree_info API's so that widgets can be reachable from ask_browse_tree_info clients (install_steps_gtk.pm)
* bug fixed in upstream gtk2Guillaume Cottenceau2003-06-111-4/+3
|
* ask_browse_tree_info: set_rules_hint(1)Guillaume Cottenceau2003-06-111-0/+1
|
* ensure N() is not called before ugtk2 is initialised, otherwisePascal Rigaux2003-06-061-0/+2
| | | | | the gettext is not forced to utf8
* fix gc sux in 1.117 modfiying function behaviourGuillaume Cottenceau2003-05-211-1/+1
|
* gtktext_insert: fix indenting of one line, takes that as aGuillaume Cottenceau2003-05-211-12/+12
| | | | | pretext to redo whole function identing without tabs
* beautify titiGuillaume Cottenceau2003-05-211-1/+1
|
* (gtktext_append) fix gtktext_insert() callThierry Vignaud2003-05-211-1/+1
|
* perl_checker fixThierry Vignaud2003-05-161-1/+1
|
* (create_dialog) scroll window if neededThierry Vignaud2003-05-151-1/+2
|
* - (create_dialog) :Thierry Vignaud2003-05-151-4/+5
| | | | | | | | | o options are passed through a hash ref o wrap text o update caller list - harddrake2: convert to use create_dialog() instead of interactive->warn (fix #3487)
* (create_dialog) :Thierry Vignaud2003-05-151-3/+3
| | | | | | - update caller list - add title parameter and update callers
* (create_dialog):Thierry Vignaud2003-04-301-4/+4
| | | | | | - second parameter really is optionnal - do not blindly set the title to logdrake, this is used elsewhere
* remove export for two removed functionsGuillaume Cottenceau2003-04-301-2/+2
|
* perl_checker can parse me at lastGuillaume Cottenceau2003-04-291-20/+3
|
* perl_checker adaptations + fixesPascal Rigaux2003-04-241-5/+6
|
* new perl_checker compliancePascal Rigaux2003-04-171-18/+20
|
* comply to new each_index behaviourPascal Rigaux2003-04-161-3/+3
|
* after adding gtk_text_buffer_place_cursor in gtk2-perl, use it here :)Guillaume Cottenceau2003-04-031-3/+2
|
* fix #3633 (cursor at the end of TextView after gtktext_insert)Guillaume Cottenceau2003-04-031-4/+11
| | | | | remove a few memory leaks
* perl_checker fixesThierry Vignaud2003-04-011-2/+2
|
* fix non-important (but still valid) part of #2488, a.k.a package tree not ↵Guillaume Cottenceau2003-03-121-1/+2
| | | | expanding visually when it should (needs the mouse pointer over it to be updated visually)
* refine the already dirty code to workaround gtk bug leading to bugzilla ↵Guillaume Cottenceau2003-03-071-1/+3
| | | | #1445 (clicking two times too fast still lead to same problem)
* fix rpmdrake dumping core when multiple searchs inGuillaume Cottenceau2003-03-071-1/+13
| | | | | "selected" and "upgradable" sorting modes (#2899)
* fix #2672Thierry Vignaud2003-03-061-1/+0
|
* (n_line_size): spacing for default font using XFT is 3Pascal Rigaux2003-03-031-1/+1
|
* perl checko says we need to use parentheses with refGuillaume Cottenceau2003-02-281-1/+1
|
* hugly hack because GtkLabel doesn't wrap when using languages that don't ↵Guillaume Cottenceau2003-02-281-1/+2
| | | | contain spaces
* - (create_factory_popup_menu): introduce it for embedded harddrake2Thierry Vignaud2003-02-271-5/+6
| | | | | | | - embedding cleanups: o give access to top-level gtk2::plug widget o reuse gtkshow
* final embedding cleanupsThierry Vignaud2003-02-241-1/+1
|
* - clean up embedding; since socket automatically emit plug-added gtk+ signalThierry Vignaud2003-02-241-1/+0
| | | | | | | | | | when plug is realize, it's just cleaner to centralize/consolidate the child embedding in mcc this of course, need a newer up-to-date mcc what's more, it allows to remove the somewhat mythical "$::isEmbedded and kill 'USR2', $::CCPID;" - keyboarddrake, xfdrake, drakautoinst: goto cleaning btw
* - clean up embedding; since socket get automatically destroyed on child exitThierry Vignaud2003-02-241-1/+0
| | | | | | | | | | and since they emit plug-removed at that moment, it's just cleaner to centralize/consolidate the child exit in mcc this of course, need a newer up-to-date mcc what's more, it allows to remove the somewhat mythical "$::isEmbedded and kill 'USR1', $::CCPID;" - drakautoinst, drakxservices, keyboardrake: fix fscking embedding managment
* embedded should segfault a bit less if I don't let the embeddedGuillaume Cottenceau2003-02-211-2/+2
| | | | | window creation destroy the destroy handler
* when isEmbedded, use $::WizardTable to allow non pop_it when not visiblePascal Rigaux2003-02-211-6/+11
|
* workaround what seems to be a gtk bug (#1445)Guillaume Cottenceau2003-02-211-2/+7
| | | | | | | gtk seems to loop (and take 100% user cpu) when I change the pixbuf of a gtkcellrendererpixbuf in a treeview that is not currently displayed
* change a bit position of main window and steps windowGuillaume Cottenceau2003-02-201-1/+1
| | | | | in steps window, have titles in grey
* try to handle case with large fonts (CJK for example) -> branch on TextViewGuillaume Cottenceau2003-02-201-1/+1
| | | | | when the box will be quite large
* ensure {box_size} is set (to have less warnings)Pascal Rigaux2003-02-201-2/+4
|
* set the destroy handler after wizard creation, or the fact thatGuillaume Cottenceau2003-02-191-1/+2
| | | | | | wizard window will overwrite existing window will also destroy the destroy handler