From: <enl...@li...> - 2006-01-28 10:29:01
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/exhibit Modified Files: TODO Log Message: - todo-- =================================================================== RCS file: /cvsroot/enlightenment/e17/proto/exhibit/TODO,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- TODO 20 Dec 2005 11:11:13 -0000 1.4 +++ TODO 28 Jan 2006 10:28:50 -0000 1.5 @@ -1,12 +1,12 @@ TODO: -- sorting ++ sorting - click on image to change -- wheel changing / zooming ++ wheel changing / zooming - dnd - options -- fix .spec file -- make argv work with /path/to/image.png and not only /path/to/dir ++ fix .spec file ++ make argv work with /path/to/image.png and not only /path/to/dir - wallpaper setting - center, stretch, tile - andy's comments feature |
From: <enl...@li...> - 2006-01-29 19:51:55
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/etk/src/lib Modified Files: etk_progress_bar.c Log Message: make progress bar attributes accessible via property calls =================================================================== RCS file: /cvsroot/enlightenment/e17/proto/etk/src/lib/etk_progress_bar.c,v retrieving revision 1.4 retrieving revision 1.5 diff -u -3 -r1.4 -r1.5 --- etk_progress_bar.c 21 Jan 2006 10:53:48 -0000 1.4 +++ etk_progress_bar.c 29 Jan 2006 19:51:48 -0000 1.5 @@ -14,7 +14,9 @@ enum _Etk_Progress_Bar_Property_Id { - ETK_PROGRESS_BAR_LABEL_PROPERTY + ETK_PROGRESS_BAR_LABEL_PROPERTY, + ETK_PROGRESS_BAR_FRACTION_PROPERTY, + ETK_PROGRESS_BAR_PULSE_STEP_PROPERTY }; enum _Etk_Progress_Bar_Activity_Dir @@ -48,7 +50,9 @@ progress_bar_type = etk_type_new("Etk_Progress_Bar", ETK_BIN_TYPE, sizeof(Etk_Progress_Bar), ETK_CONSTRUCTOR(_etk_progress_bar_constructor), NULL); etk_type_property_add(progress_bar_type, "label", ETK_PROGRESS_BAR_LABEL_PROPERTY, ETK_PROPERTY_STRING, ETK_PROPERTY_READABLE_WRITABLE, etk_property_value_string(NULL)); - + etk_type_property_add(progress_bar_type, "fraction", ETK_PROGRESS_BAR_FRACTION_PROPERTY, ETK_PROPERTY_DOUBLE, ETK_PROPERTY_READABLE_WRITABLE, etk_property_value_double(0.0)); + etk_type_property_add(progress_bar_type, "pulse_step", ETK_PROGRESS_BAR_PULSE_STEP_PROPERTY, ETK_PROPERTY_DOUBLE, ETK_PROPERTY_READABLE_WRITABLE, etk_property_value_double(0.1)); + progress_bar_type->property_set = _etk_progress_bar_property_set; progress_bar_type->property_get = _etk_progress_bar_property_get; } @@ -217,7 +221,7 @@ * @param progress_bar a progess bar * @param orientation the new orientation */ -void etk_progress_bar_pulse_step_set(Etk_Progress_Bar *progress_bar, Etk_Progress_Bar_Orientation orientation) +void etk_progress_bar_pulse_orientation_set(Etk_Progress_Bar *progress_bar, Etk_Progress_Bar_Orientation orientation) { Etk_Widget *widget; @@ -267,6 +271,12 @@ case ETK_PROGRESS_BAR_LABEL_PROPERTY: etk_progress_bar_text_set(progress_bar, etk_property_value_string_get(value)); break; + case ETK_PROGRESS_BAR_FRACTION_PROPERTY: + etk_progress_bar_fraction_set(progress_bar, etk_property_value_double_get(value)); + break; + case ETK_PROGRESS_BAR_PULSE_STEP_PROPERTY: + etk_progress_bar_pulse_step_set(progress_bar, etk_property_value_double_get(value)); + break; default: break; } @@ -285,6 +295,12 @@ case ETK_PROGRESS_BAR_LABEL_PROPERTY: etk_property_value_string_set(value, etk_progress_bar_text_get(progress_bar)); break; + case ETK_PROGRESS_BAR_FRACTION_PROPERTY: + etk_property_value_double_set(value, etk_progress_bar_fraction_get(progress_bar)); + break; + case ETK_PROGRESS_BAR_PULSE_STEP_PROPERTY: + etk_property_value_double_set(value, etk_progress_bar_pulse_step_get(progress_bar)); + break; default: break; } |
From: <enl...@li...> - 2006-02-07 00:29:26
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/enhance Log Message: Directory /cvsroot/enlightenment/e17/proto/enhance added to the repository |
From: <enl...@li...> - 2006-02-07 00:30:55
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/enhance/src Log Message: Directory /cvsroot/enlightenment/e17/proto/enhance/src added to the repository |
From: <enl...@li...> - 2006-02-07 00:30:57
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/enhance/m4 Log Message: Directory /cvsroot/enlightenment/e17/proto/enhance/m4 added to the repository |
From: <enl...@li...> - 2006-02-07 00:30:57
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/enhance/examples Log Message: Directory /cvsroot/enlightenment/e17/proto/enhance/examples added to the repository |
From: <enl...@li...> - 2006-02-07 00:32:15
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/enhance/src/lib Log Message: Directory /cvsroot/enlightenment/e17/proto/enhance/src/lib added to the repository |
From: <enl...@li...> - 2006-02-07 00:34:37
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/enhance Added Files: AUTHORS INSTALL Makefile.am README TODO autogen.sh compile configure.in enhance-config.in Log Message: Enhance ======== Enhance is a library that takes advantage of Glade's .glade XML files, EXML, and Etk to easy application GUI development and cut down on its time. After using Glade to design a GUI, you can save generate the .glade XML file that describes the interface design and use it in Enhance to generate an Etk equivalent. Enhance works at runtime, ie, it does not generate C code. It will parse the XML at application launch and will do the appropriate work to create the GUI and the required callbacks for you. There are several examples in the examples directory for you to take a look at. Please note that Etk does not support all of the GTK+ widgets. As widgets are added to Etk, Enhance will be updated to support those new widgets. |
From: <enl...@li...> - 2006-02-07 00:34:37
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/enhance/examples Added Files: build_test button.glade buttons.glade email.glade enhance_test.c extrackt.glade file_app.glade frame.glade notebook.glade paned.glade scrolledview.glade slider.glade table.glade tree.glade Log Message: Enhance ======== Enhance is a library that takes advantage of Glade's .glade XML files, EXML, and Etk to easy application GUI development and cut down on its time. After using Glade to design a GUI, you can save generate the .glade XML file that describes the interface design and use it in Enhance to generate an Etk equivalent. Enhance works at runtime, ie, it does not generate C code. It will parse the XML at application launch and will do the appropriate work to create the GUI and the required callbacks for you. There are several examples in the examples directory for you to take a look at. Please note that Etk does not support all of the GTK+ widgets. As widgets are added to Etk, Enhance will be updated to support those new widgets. |
From: <enl...@li...> - 2006-02-07 00:34:37
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/enhance/src Added Files: Makefile.am Log Message: Enhance ======== Enhance is a library that takes advantage of Glade's .glade XML files, EXML, and Etk to easy application GUI development and cut down on its time. After using Glade to design a GUI, you can save generate the .glade XML file that describes the interface design and use it in Enhance to generate an Etk equivalent. Enhance works at runtime, ie, it does not generate C code. It will parse the XML at application launch and will do the appropriate work to create the GUI and the required callbacks for you. There are several examples in the examples directory for you to take a look at. Please note that Etk does not support all of the GTK+ widgets. As widgets are added to Etk, Enhance will be updated to support those new widgets. |
From: <enl...@li...> - 2006-02-07 00:34:38
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/enhance/m4 Added Files: ac_path_generic.m4 pthread.m4 Log Message: Enhance ======== Enhance is a library that takes advantage of Glade's .glade XML files, EXML, and Etk to easy application GUI development and cut down on its time. After using Glade to design a GUI, you can save generate the .glade XML file that describes the interface design and use it in Enhance to generate an Etk equivalent. Enhance works at runtime, ie, it does not generate C code. It will parse the XML at application launch and will do the appropriate work to create the GUI and the required callbacks for you. There are several examples in the examples directory for you to take a look at. Please note that Etk does not support all of the GTK+ widgets. As widgets are added to Etk, Enhance will be updated to support those new widgets. |
From: <enl...@li...> - 2006-02-07 00:34:38
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/enhance/src/lib Added Files: Enhance.h Makefile.am enhance.c enhance_private.h enhance_widget.c enhance_widget.h Log Message: Enhance ======== Enhance is a library that takes advantage of Glade's .glade XML files, EXML, and Etk to easy application GUI development and cut down on its time. After using Glade to design a GUI, you can save generate the .glade XML file that describes the interface design and use it in Enhance to generate an Etk equivalent. Enhance works at runtime, ie, it does not generate C code. It will parse the XML at application launch and will do the appropriate work to create the GUI and the required callbacks for you. There are several examples in the examples directory for you to take a look at. Please note that Etk does not support all of the GTK+ widgets. As widgets are added to Etk, Enhance will be updated to support those new widgets. |
From: <enl...@li...> - 2006-02-07 01:29:51
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/extrackt Log Message: Directory /cvsroot/enlightenment/e17/proto/extrackt added to the repository |
From: <enl...@li...> - 2006-02-07 01:30:24
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/extrackt/data Log Message: Directory /cvsroot/enlightenment/e17/proto/extrackt/data added to the repository |
From: <enl...@li...> - 2006-02-07 01:30:25
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/extrackt/src Log Message: Directory /cvsroot/enlightenment/e17/proto/extrackt/src added to the repository |
From: <enl...@li...> - 2006-02-07 01:30:25
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/extrackt/m4 Log Message: Directory /cvsroot/enlightenment/e17/proto/extrackt/m4 added to the repository |
From: <enl...@li...> - 2006-02-07 01:30:47
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/extrackt/data/etk_fe Log Message: Directory /cvsroot/enlightenment/e17/proto/extrackt/data/etk_fe added to the repository |
From: <enl...@li...> - 2006-02-07 01:30:48
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/extrackt/data/images Log Message: Directory /cvsroot/enlightenment/e17/proto/extrackt/data/images added to the repository |
From: <enl...@li...> - 2006-02-07 01:31:12
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/extrackt/data/etk_fe/images Log Message: Directory /cvsroot/enlightenment/e17/proto/extrackt/data/etk_fe/images added to the repository |
From: <enl...@li...> - 2006-02-07 01:32:11
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/extrackt/src/bin Log Message: Directory /cvsroot/enlightenment/e17/proto/extrackt/src/bin added to the repository |
From: <enl...@li...> - 2006-02-07 01:32:39
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/extrackt/src/bin/etk_fe Log Message: Directory /cvsroot/enlightenment/e17/proto/extrackt/src/bin/etk_fe added to the repository |
From: <enl...@li...> - 2006-02-07 01:35:19
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/extrackt Added Files: AUTHORS INSTALL Makefile.am README TODO autogen.sh compile configure.in Log Message: cat grip.tar.gz | etkify > extrackt.tar.gz ============================================ Extrackt ======== Extrackt is essentially an audio CD ripper and encoder. It allows you to choose your ripper and encoder based on templates which give Extrackt the ability to use multiple built in and user defined ones. Extrackt is logically split into a frontend (gui) and a backend (ripping / encoding / cddb etc.) and allows for frontends to be written using any toolkit like Etk, Ewl, Gtk, or even pure Evas / Edje (not to mention ncurses or simlpe shell ones). Main developers: ================ Hisham 'CodeWarrior' Mardam Bey Jorge Luis 'turran' Zapata Thanks: ======= Etk Simon 'MoOm' Treny <sim...@fr...> Misc EFL Casten 'The Rasterman' Haitzler <ra...@ra...> + team App Name Sara 'Maieve' Ashour <ma...@gm...> |
From: <enl...@li...> - 2006-02-07 01:35:20
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/extrackt/data/etk_fe Added Files: Makefile.am etk_fe.edc extrackt.glade Log Message: cat grip.tar.gz | etkify > extrackt.tar.gz ============================================ Extrackt ======== Extrackt is essentially an audio CD ripper and encoder. It allows you to choose your ripper and encoder based on templates which give Extrackt the ability to use multiple built in and user defined ones. Extrackt is logically split into a frontend (gui) and a backend (ripping / encoding / cddb etc.) and allows for frontends to be written using any toolkit like Etk, Ewl, Gtk, or even pure Evas / Edje (not to mention ncurses or simlpe shell ones). Main developers: ================ Hisham 'CodeWarrior' Mardam Bey Jorge Luis 'turran' Zapata Thanks: ======= Etk Simon 'MoOm' Treny <sim...@fr...> Misc EFL Casten 'The Rasterman' Haitzler <ra...@ra...> + team App Name Sara 'Maieve' Ashour <ma...@gm...> |
From: <enl...@li...> - 2006-02-07 01:35:20
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/extrackt/m4 Added Files: ac_path_generic.m4 pthread.m4 Log Message: cat grip.tar.gz | etkify > extrackt.tar.gz ============================================ Extrackt ======== Extrackt is essentially an audio CD ripper and encoder. It allows you to choose your ripper and encoder based on templates which give Extrackt the ability to use multiple built in and user defined ones. Extrackt is logically split into a frontend (gui) and a backend (ripping / encoding / cddb etc.) and allows for frontends to be written using any toolkit like Etk, Ewl, Gtk, or even pure Evas / Edje (not to mention ncurses or simlpe shell ones). Main developers: ================ Hisham 'CodeWarrior' Mardam Bey Jorge Luis 'turran' Zapata Thanks: ======= Etk Simon 'MoOm' Treny <sim...@fr...> Misc EFL Casten 'The Rasterman' Haitzler <ra...@ra...> + team App Name Sara 'Maieve' Ashour <ma...@gm...> |
From: <enl...@li...> - 2006-02-07 01:35:20
|
Enlightenment CVS committal Author : codewarrior Project : e17 Module : proto Dir : e17/proto/extrackt/src/bin/etk_fe Added Files: Makefile.am gui.c gui.h Log Message: cat grip.tar.gz | etkify > extrackt.tar.gz ============================================ Extrackt ======== Extrackt is essentially an audio CD ripper and encoder. It allows you to choose your ripper and encoder based on templates which give Extrackt the ability to use multiple built in and user defined ones. Extrackt is logically split into a frontend (gui) and a backend (ripping / encoding / cddb etc.) and allows for frontends to be written using any toolkit like Etk, Ewl, Gtk, or even pure Evas / Edje (not to mention ncurses or simlpe shell ones). Main developers: ================ Hisham 'CodeWarrior' Mardam Bey Jorge Luis 'turran' Zapata Thanks: ======= Etk Simon 'MoOm' Treny <sim...@fr...> Misc EFL Casten 'The Rasterman' Haitzler <ra...@ra...> + team App Name Sara 'Maieve' Ashour <ma...@gm...> |