summaryrefslogtreecommitdiffstats
path: root/perl-install/interactive
Commit message (Collapse)AuthorAgeFilesLines
* - methods with no argument are not functions with no argument!Pascal Rigaux2003-05-262-7/+7
| | | | | - perl_checker fixes
* perl_checker fixesThierry Vignaud2003-05-232-3/+3
|
* perl_checker adaptations + fixesPascal Rigaux2003-04-243-11/+11
|
* new perl_checker compliancePascal Rigaux2003-04-171-2/+2
|
* "ensure buttons are visible when the widgets above are too big" only at installPascal Rigaux2003-03-061-1/+1
|
* ensure buttons are visible when the widgets above are too bigPascal Rigaux2003-03-051-1/+8
|
* a few treeview/list fixes:Guillaume Cottenceau2003-03-031-3/+12
| | | | | | | | | | - when selecting a value, scroll it like in treeview/tree - use saved_default_val dirty hackery to really honour default value - fix not calling $select again when trying to select an already selected value (happens when clicking or keyboard-selecting; broken, it ended up in always scrolling the selected value to the center)
* workaround gtk suckiness (set_text in a combo generates two 'change' ↵Pascal Rigaux2003-02-271-1/+8
| | | | signals, one when removing the whole, one for inserting the replacement..)
* perl_checker fixPascal Rigaux2003-02-271-1/+1
|
* handle multi-line labels for Checkbox'es (eg: Options in diskdrake)Pascal Rigaux2003-02-261-11/+33
|
* handle the "Advanced" button in newtPascal Rigaux2003-02-261-12/+30
|
* first attempt at making printerdrake to behave smoother when embedded in theThierry Vignaud2003-02-241-0/+1
| | | | | mcc
* in $::expert, use a SpinButton instead of HScale for type "range"Pascal Rigaux2003-02-221-3/+4
| | | | | (useful in diskdrake to enter the partition size directly)
* set a minimum size for Gtk2::HScale's (mainly used for resizing partitions)Pascal Rigaux2003-02-201-0/+1
|
* fix $ok_clicked when there is no ok buttonPascal Rigaux2003-02-201-1/+1
|
* have less warnings when debuggingPascal Rigaux2003-02-201-2/+4
|
* can't use $mainw->{ok}->clicked since $mainw->{ok} doesn't always exist, setPascal Rigaux2003-02-191-1/+5
| | | | | | {retval} and main_quit instead (the way it was done for double click, is this ok when pressing enter?)
* disallow double-clicking on "Refuse" (license step)Pascal Rigaux2003-02-191-3/+3
|
* simplifyPascal Rigaux2003-02-181-3/+2
|
* fix tree in newt (now handles default selected entry, and disallow using ↵Pascal Rigaux2003-02-181-13/+30
| | | | non-leaves)
* internalize prepare_gtk2 in the BEGIN {} of ugtk2 already containing the ↵Guillaume Cottenceau2003-02-181-1/+0
| | | | Gtk2->init
* in {complete} or {canceled}, ensure giving a bad entry number to focus doesn'tPascal Rigaux2003-02-181-2/+6
| | | | | break (and log that something wrong happened)
* also ->hide in when a button is clicked in standalonePascal Rigaux2003-02-171-10/+2
|
* fix ask_warn(), really dont make it popPascal Rigaux2003-02-131-5/+0
|
* - set_help is deprecatedPascal Rigaux2003-02-131-1/+6
| | | | | | | - it is replaced by interactive_help_id on each ask_* - many set_help do not have any correspondance in help.pm (drakxid-*), those are commented for now
* - {interactive_help} is a function returning text, it doesn't need to do the ↵Pascal Rigaux2003-02-131-1/+1
| | | | | | | help window - drop global interactive_help during install. Will be done per ->ask_*
* allow {interactive_help} per dialog boxes instead of globalPascal Rigaux2003-02-121-1/+1
|
* perl_checker compliance ("ref" now need parentheses in many case)Pascal Rigaux2003-02-121-1/+1
|
* two fixes thx to perl_checker, one among them being very important :)Guillaume Cottenceau2003-02-101-2/+2
|
* when displaying images in treeview, unref pixbufs right after their use so ↵Guillaume Cottenceau2003-02-101-9/+13
| | | | that we try to save some memory
* add option advanced_state: if set to 1, force the "Advanced" part of the ↵Guillaume Cottenceau2003-02-081-1/+1
| | | | dialog to be opened initially
* add possibility to display images in tree-lists and bool-listsGuillaume Cottenceau2003-02-081-4/+22
|
* fix sizing in the scrolled window in 80x25Pascal Rigaux2003-02-061-7/+12
|
* add "Help" buttonPascal Rigaux2003-02-061-1/+1
|
* replace $l[$#l] with $l[-1]Pascal Rigaux2003-02-051-1/+1
|
* don't force wait_messages popPascal Rigaux2003-02-051-2/+4
|
* fix typo (for treelist)Pascal Rigaux2003-02-031-1/+1
|
* handle pop_it more nicely: no need to precise pop_it when the wizard window ↵Pascal Rigaux2003-01-311-2/+1
| | | | | | | already has a window, that way, two dialog boxes won't merge in the same window (which is dumb!)
* perl_checker small fixesPascal Rigaux2003-01-301-2/+2
|
* basic treelist handling (it leaks memory, but who cares, compared to gtk :)Pascal Rigaux2003-01-301-1/+47
|
* fixes unresponsive keyboardGuillaume Cottenceau2003-01-281-3/+3
|
* cleaning the utf8 support stuff:Thierry Vignaud2003-01-281-0/+1
| | | | | | | | | | - consolidate check_for_xserver() to check for x11 access - introduce prepare_gtk2() to do what gtk+2 needs, so that tools that're not part of drakxtools (aka: rpmdrake, mcc, ...) can just do : unshift @::textdomains, 'drakconf'; prepare_gtk2();
* cleanup use of flagsPascal Rigaux2003-01-281-3/+3
|
* simplify API (always -1,-1 for left,top when creating widget, it means ↵Pascal Rigaux2003-01-281-6/+6
| | | | auto-placement)
* don't blindly truncate strings to size 40 in simplify_stringPascal Rigaux2003-01-271-8/+10
|
* since return values of callbacks are now non-ignored, we need toGuillaume Cottenceau2003-01-271-1/+1
| | | | | | return 0 to the expose_event when displaying wait message so that gdk really does the exposure :)
* diskdrake: when non embedded, ensure sub window are modalThierry Vignaud2003-01-271-2/+2
| | | | | all other drakx tool can be fixed the same way
* remove unused variableGuillaume Cottenceau2003-01-241-1/+1
|
* fix Return key on a radio button grabbing focus on next functional group of ↵Guillaume Cottenceau2003-01-241-2/+1
| | | | widgets AND doing an action on it (toggling checkbuttons etc) (needs perl-GTK2 >= 0.0.cvs.2003.01.24.1)
* fix special case "for license agreement": only use it for long messages, and ↵Pascal Rigaux2003-01-231-2/+2
| | | | fix {format} use