summaryrefslogtreecommitdiffstats
path: root/perl-install/my_gtk.pm
Commit message (Collapse)AuthorAgeFilesLines
* no more used (drakcronat just removed from distro)Thierry Vignaud2003-09-081-575/+0
| | | | | => less dependancies :-)
* perl_checker fixesThierry Vignaud2003-05-231-1/+1
|
* fix #3952: do not pass extra argument (gc alteredThierry Vignaud2003-05-201-1/+1
| | | | | | common::take_screenshot() api in r1.172 but forget to alter all callees)
* - 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
* remove exported names which are not definedPascal Rigaux2002-12-131-1/+1
|
* remove dynamic theme choosing, and next/previous (F11/F12) handlingPascal Rigaux2002-12-091-6/+1
|
* remove code handling setstepPascal Rigaux2002-12-091-11/+1
|
* remove unused variables or rename them with an underscore (eg: $o becomes $_o)Pascal Rigaux2002-12-041-8/+7
|
* use if_() where possible (as reported by perl_checker)Pascal Rigaux2002-12-041-1/+1
|
* perl_checker adaptationsPascal Rigaux2002-11-271-3/+3
|
* warn about broken programs that misuse my_gtkThierry Vignaud2002-11-251-1/+1
|
* display in mcc when embedded only when ready to interact with the userThierry Vignaud2002-11-251-1/+1
|
* - add/remove spaces to make perl_checker happyPascal Rigaux2002-11-141-3/+3
| | | | | | - remove redundant parentheses - add some parentheses for clarity
* add/remove spaces to make perl_checker happyPascal Rigaux2002-11-131-2/+2
|
* - replace ... =~ 'foo' with ... =~ /foo/Pascal Rigaux2002-11-111-2/+2
| | | | | - remove unneeded parentheses for things like ... if (...)
* add or remove spaces where need to please perl_checkerPascal Rigaux2002-11-111-8/+7
|
* normalizePascal Rigaux2002-11-081-2/+2
|
* replace "_" with "N" and "__" with "N_"Pascal Rigaux2002-11-061-11/+11
| | | | | | | | | | | | | | | | | | | rationale: - currently, we use _("xxx") as a shorthand for gettext("xxx"). It also used to call xgettext with --keyword=_ - alas, function &_ is global and not by package (notice esp. that _ is not exported in common.pm) - this lead to big ugly pb with packages defining their own &_, overriding common.pm's &_ - a fix is to set @::textdomains to add a new domain (the default being "libDrakX") but relying on the global "_" is still dangerous!
* fix dams suckiness breaking install2 --testGuillaume Cottenceau2002-10-161-1/+1
|
* mdk icon_path are added heredamien2002-10-011-0/+1
|
* fix die wizcancel in non wizard modeGuillaume Cottenceau2002-09-161-1/+1
|
* workaround ERROR: Can't call method "child" on an undefined value atGuillaume Cottenceau2002-09-141-1/+1
| | | | | /usr/lib/libDrakX/my_gtk.pm line 94
* gfx specs is to have the text justified on the leftGuillaume Cottenceau2002-09-091-1/+1
|
* - fix wizard title and pixmap overlapDaouda Lo2002-09-061-1/+1
|
* add gtkset_visibilityGuillaume Cottenceau2002-09-061-1/+1
|
* ask_browse_tree_info_given_widgets: add ability of partialGuillaume Cottenceau2002-09-051-2/+3
| | | | | | selection clickery leading to unselection for rpmdrake (if someone understands this log message..)
* try to get rid of BEGIN but still be able to start up the install :-)Guillaume Cottenceau2002-09-031-1/+0
|
* remove the use of Ok/Cancel/Exit icons (per ergonomy team request)Pascal Rigaux2002-09-031-11/+6
|
* better icon associationdamien2002-09-031-5/+4
|
* added create_pixbuttondamien2002-09-031-7/+13
|
* fixed damien (aka pitchounette) sucking, this is not this way pitchounette youFrancois Pons2002-09-031-1/+1
| | | | | will lost your current name as pitchounette :-)
* - better size of wizard for printerdrakeDaouda Lo2002-09-031-1/+1
|
* added add_icon_path for control-centerdamien2002-09-031-0/+1
|
* ask_browse: display_info needs to be available for rpmdrakeGuillaume Cottenceau2002-08-291-2/+2
|
* - add ",*-r-*" in wizard fontsetPascal Rigaux2002-08-271-1/+1
| | | | | - i18n the fontset
* hackery for [+] intruded some situations where we really don'tGuillaume Cottenceau2002-08-221-3/+4
| | | | | | want any child, so provide an option to have nochild when necessary
* change a bit hackery of parents with no children, so now we haveGuillaume Cottenceau2002-08-221-1/+5
| | | | | | one child (with '' as a name) so that we do have the [+] in front of the parent
* - the ugly trick on destroy doesn't work for wait_message'sPascal Rigaux2002-08-211-7/+0
| | | | | - fortunately the END calling exit seems to be enough in most cases
* - in destroy, detect if program is going to leave, in that casePascal Rigaux2002-08-201-0/+10
| | | | | | | | | | | | don't do anything, especially don't set the waiting mouse cursor another thing is that calling flush() at this moment causes segfault so don't do it and no more segfault :) (now, if someone finds out what this 4 is about... but you cares, it works :) this fixes program ending on an exception - also add END() calling exit() (in case a program forgets to (heurk) call exit())
* in my_gtk object, set {isEmbedded} if embedded and {isWizard} if displayed ↵Pascal Rigaux2002-08-191-0/+2
| | | | wizard mode
* (create_okcancel): do not display "Cancel" when {cancel} is empty stringPascal Rigaux2002-08-161-4/+3
|
* do not hard code icon pathPascal Rigaux2002-08-081-1/+1
|
* - remove buttons to change themePascal Rigaux2002-08-081-0/+3
| | | | | | - add F5 to change the theme to the 'white' theme - cleanup the theme code
* make perl_checker happyPascal Rigaux2002-08-061-2/+2
|
* the state can be XXX also in flat mode, for disablingGuillaume Cottenceau2002-08-051-0/+1
| | | | | the setting of the state
* replace "kill USR1" with "kill 'USR1'" (and same for USR2)Pascal Rigaux2002-08-051-2/+2
| | | | | (so that 'use strict' works)
* move interactive::gtk::exit to my_gtk::exit so that my_gtkGuillaume Cottenceau2002-08-021-0/+6
| | | | | apps can call it (and fix busy mouse cursor problem that way)
* commit according to 1.1.9-1mdk of drakxtools, and especially:Guillaume Cottenceau2002-08-011-36/+66
| | | | | | | | | | | | | | | | | | | - integrate patches in my_gtk and ugtk for new rpmdrake: - [ugtk] add "gtkentry" so that we can create an entry and set initial value in one call - [my_gtk::main] don't set the events, to fix keyboard focus problem in entries when embedded - [my_gtk::_create_window] add $::noBorder, to not have a frame in the main window, so that it's possible to end up with windows with no border - [my_gtk] add ask_dir which is a ask_file with only the dir list - [my_gtk] add ask_browse_tree_info to the export tags, and: - add support for parents with no leaves, so that then we can partially build the trees (for speedup) - add "delete_all" and "delete_category" callbacks - use Gtk::CList::clear when removing all the nodes, much speedup
* move back Gtk->init to "new" and "gtkroot"Pascal Rigaux2002-08-011-0/+3
|