Commit Graph

409 Commits

Author SHA1 Message Date
ce0fb06f3e (button_clicked): Fix this so we don't get stuck inside
gtk_dialog_run's main loop forever.

svn path=/trunk/; revision=20433
2003-03-20 17:46:43 +00:00
d8dbc151f0 Change the strings in the timespans array from "second" / "seconds" to "1
* filter-datespec.c (timespans, set_button): Change the strings in
	the timespans array from "second" / "seconds" to "1 second ago" /
	"%d seconds ago", etc, and update the code in set_button that uses
	them. Fixes #36245, translation clash between the "second" here
	and the one in the calendar (where it's used as "2nd").

svn path=/trunk/; revision=20432
2003-03-20 17:09:47 +00:00
1bef6b2b8c Don't return here - this is a void function. (rule_editor_set_source):
2003-03-20  Jeffrey Stedfast  <fejj@ximian.com>

	* rule-editor.c (rule_editor_set_sensitive): Don't return here -
	this is a void function.
	(rule_editor_set_source): Same.

svn path=/trunk/; revision=20429
2003-03-20 15:52:00 +00:00
3a1c2dfaef use the same code as in filter-rule to enforce unique names for all
2003-03-18  Not Zed  <NotZed@Ximian.com>

        * rule-context.c (new_rule_response): use the same code as in
        filter-rule to enforce unique names for all rules/vfolders.

svn path=/trunk/; revision=20332
2003-03-18 08:21:34 +00:00
8febd0e5ac Set the default window size to something reasonable (350x400?). Fixes bug
2003-03-17  Jeffrey Stedfast  <fejj@ximian.com>

	* rule-editor.c (rule_editor_construct): Set the default window
	size to something reasonable (350x400?). Fixes bug #39808.

svn path=/trunk/; revision=20323
2003-03-17 22:22:33 +00:00
13398c9928 Fixed to work properly. Fixes bug #39654.
2003-03-17  Jeffrey Stedfast  <fejj@ximian.com>

	* vfolder-rule.c (source_remove): Fixed to work properly. Fixes
	bug #39654.

svn path=/trunk/; revision=20321
2003-03-17 21:44:44 +00:00
32f1cfd13f Always add a Cancel button here, but if !enable_undo - make the response
2003-03-17  Jeffrey Stedfast  <fejj@ximian.com>

	* rule-editor.c (rule_editor_construct): Always add a Cancel
	button here, but if !enable_undo - make the response id
	GTK_RESPONSE_CANCEL rather than GTK_RESPONSE_REJECT (which does
	undo). This mimics the behaviour that was done in the mail/ code
	previously. Fixes bug #39809.

svn path=/trunk/; revision=20315
2003-03-17 19:53:56 +00:00
d51c9927e5 go to the proper level of child node before looking for rule sets, fix for
2003-03-11  Not Zed  <NotZed@Ximian.com>

        * rule-context.c (revert): go to the proper level of child node
        before looking for rule sets, fix for #39165 to make 'cancel' work.

svn path=/trunk/; revision=20230
2003-03-10 08:15:01 +00:00
d8298a3e80 Fixes for bug #39170
2003-03-06  Jeffrey Stedfast  <fejj@ximian.com>

	Fixes for bug #39170

	* filter-element.c (filter_element_xml_create): Remove return
	keyword.
	(filter_element_build_code): Same.
	(filter_element_format_sexp): Here too.

svn path=/trunk/; revision=20189
2003-03-06 14:51:36 +00:00
87f2abd1f0 Change to use EAccountList, etc.
2003-02-20  Not Zed  <NotZed@Ximian.com>

        * filter-source.c (filter_source_get_sources): Change to use
        EAccountList, etc.

svn path=/trunk/; revision=20014
2003-02-24 02:47:20 +00:00
1d869c5796 Get rid of the need for the GTK_WIDGET_DESTROYED() check.
2003-02-12  Jeffrey Stedfast  <fejj@ximian.com>

	* vfolder-rule.c (source_add): Get rid of the need for the
	GTK_WIDGET_DESTROYED() check.

svn path=/trunk/; revision=19898
2003-02-12 20:42:35 +00:00
8d7130fe72 Use g_object_new() instead of gtk_type_new().
2003-02-07  Jeffrey Stedfast  <fejj@ximian.com>

	* filter-editor.c (filter_editor_new): Use g_object_new()
	instead of gtk_type_new().

	* vfolder-editor.c (vfolder_editor_new): Use g_object_new()
	instead of gtk_type_new().

	* score-editor.c (score_editor_new): Use g_object_new() instead of
	gtk_type_new().

	* rule-editor.c (rule_editor_new): Use g_object_new() instead of
	gtk_type_new().
	(rule_add): Use gtk_window_set_resizable() instead of the
	deprecated gtk_window_set_policy().
	(rule_edit): Same here.
	(rule_editor_construct): Here too.

	* rule-context.c (rule_context_add_rule_gui): Use
	gtk_window_set_resizable() instead of the deprecated
	gtk_window_set_policy().

svn path=/trunk/; revision=19847
2003-02-07 21:51:51 +00:00
66802f088f Defined in configure.in now (filterdir): Define using privdatadir
* Makefile.am (gladedir): Defined in configure.in now
	(filterdir): Define using privdatadir

svn path=/trunk/; revision=19776
2003-02-05 22:37:03 +00:00
5dadc27fb9 (gladedir): Version using $(BASE_VERSION).
(filterdir): Likewise.

svn path=/trunk/; revision=19559
2003-01-22 20:10:31 +00:00
ad1fe3bc9c dont re-use 'widget', its the return value!
2003-01-15  Not Zed  <NotZed@Ximian.com>

        * vfolder-rule.c (get_widget): dont re-use 'widget', its the
        return value!

svn path=/trunk/; revision=19488
2003-01-15 22:25:48 +00:00
3a08c59b32 Back to using e_xml_save_file().
2003-01-15  Jeffrey Stedfast  <fejj@ximian.com>

	* rule-context.c (save): Back to using e_xml_save_file().

svn path=/trunk/; revision=19483
2003-01-15 20:40:44 +00:00
8c18975c23 Change dialog from OK/Cancel to Cancel/OK to match HIG. (rule_edit):
* rule-editor.c (rule_add): Change dialog from OK/Cancel to
Cancel/OK to match HIG.
(rule_edit): Likewise.
(rule_editor_construct): Likewise.

* rule-context.c (rule_context_add_rule_gui): Change dialog from
OK/Cancel to Cancel/OK to match HIG.

* filter-datespec.c (button_clicked): Change dialog from OK/Cancel
to Cancel/OK to match HIG.

svn path=/trunk/; revision=19470
2003-01-14 22:47:19 +00:00
1e42c9e6ff more bug #'s
svn path=/trunk/; revision=19229
2003-01-03 20:16:15 +00:00
9eceff66b1 added a bug # that was fixed
svn path=/trunk/; revision=19227
2003-01-03 20:01:58 +00:00
4aa0c65063 Scroll to the newly added row. (rule_delete): Scroll to the selected row.
2003-01-03  Jeffrey Stedfast  <fejj@ximian.com>

	* rule-editor.c (add_editor_response): Scroll to the newly added
	row.
	(rule_delete): Scroll to the selected row.
	(rule_move): After moving the row, re-select it and then scroll to
	make sure that it is still visible.

svn path=/trunk/; revision=19226
2003-01-03 20:00:46 +00:00
c43efddd13 more fixes
svn path=/trunk/; revision=19203
2003-01-02 18:33:06 +00:00
901d85f456 Fixed to build with -DG_DISABLE_DEPRECATED and -DGTK_DISABLE_DEPRECATED
2003-01-02  Jeffrey Stedfast  <fejj@ximian.com>

	Fixed to build with -DG_DISABLE_DEPRECATED and
	-DGTK_DISABLE_DEPRECATED

svn path=/trunk/; revision=19202
2003-01-02 17:06:18 +00:00
f6232508a1 Use an easier method for getting the iter.
2002-12-12  Jeffrey Stedfast  <fejj@ximian.com>

	* rule-editor.c (cursor_changed): Use an easier method for getting
	the iter.

svn path=/trunk/; revision=19108
2002-12-13 02:14:17 +00:00
dc41429125 New custom function for creating the source_list widget. (get_widget):
2002-12-12  Jeffrey Stedfast  <fejj@ximian.com>

	* vfolder-rule.c (vfolder_editor_sourcelist_new): New custom
	function for creating the source_list widget.
	(get_widget): Removed the source_list creation code.

	* rule-editor.c (rule_editor_construct): Listen to row-activated
	for double-click events. Also, removed the model creation code out
	of here.
	(rule_editor_treeview_new): Moved the treeview and model creation
	code into here instead, and made the glade widgets into custom
	widgets.

svn path=/trunk/; revision=19106
2002-12-13 00:32:28 +00:00
66c09e1229 updated
svn path=/trunk/; revision=19004
2002-12-04 16:42:36 +00:00
efcca0533d Add a textcellrenderer to display the folders. (get_widget): Remove FIXME
2002-11-26  Not Zed  <NotZed@Ximian.com>

        * vfolder-rule.c (get_widget): Add a textcellrenderer to display
        the folders.
        (get_widget): Remove FIXME which was wrong.

svn path=/trunk/; revision=18924
2002-11-26 11:52:31 +00:00
9372387769 FILTER_RULE_CLASS -> _GET_CLASS
2002-11-26  Not Zed  <NotZed@Ximian.com>

        * filter-rule.c (filter_rule_validate): FILTER_RULE_CLASS ->
        _GET_CLASS

        * rule-context.c (rule_context_save): RULE_CONTEXT_CLASS ->
        RULE_CONTEXT_GET_CLASS
        (rule_context_revert): "

        * *.[ch]: Ran fix.sh over all files.

        * rule-editor.c (rule_add): widget:set_parent ->
        window:set_transient_for
        (editor_response): renamed from editor_clicked, handle gtk dialog
        response codes.
        (rule_edit): connect to response rather than clicked.
        (rule_editor_construct): Setup a text column in the tree view.
        Not sure if this can be handled via glade.

svn path=/trunk/; revision=18922
2002-11-26 11:25:51 +00:00
37cdfc6c84 free the list data
svn path=/trunk/; revision=18862
2002-11-20 20:24:24 +00:00
83f24bfbbf gconfify.
2002-11-20  Jeffrey Stedfast  <fejj@ximian.com>

	* filter-label.c (xml_create): gconfify.

svn path=/trunk/; revision=18861
2002-11-20 19:49:55 +00:00
0c8bfeb83d Updated to use GtkTreeView.
2002-11-18  Jeffrey Stedfast  <fejj@ximian.com>

	* rule-editor.c: Updated to use GtkTreeView.

	* vfolder-rule.c: Same.

svn path=/trunk/; revision=18830
2002-11-18 20:57:35 +00:00
ac1de7eaf9 Get the root node properly.
2002-11-13  Not Zed  <NotZed@Ximian.com>

	* rule-context.c (load): Get the root node properly.

	* rule-editor.c (rule_add): cast g_object_weak_ref
	(rule_edit): "

	* all: xml2 node change - childs->children.  Also, ignore 'text'
	nodes while scanning tree.

	* rule-context.h: gnome-xml->libxml.

	* filter-element.h: gnome-xml->libxml

svn path=/trunk/; revision=18732
2002-11-13 09:31:06 +00:00
a08bb5c1e3 comment out gtk_destroyed check.
2002-11-13  Not Zed  <NotZed@Ximian.com>

        * vfolder-rule.c (source_add): comment out gtk_destroyed check.

        * filter-label.c: Added back some of the guts.  Might not work but
        some of the code uses it :-/.  Gives u a fixed set of non-editable
        labels.

svn path=/trunk/; revision=18729
2002-11-13 04:18:42 +00:00
977c6e8ee8 Use weak_ref instead of connecting to "destroy". (rule_add): Same.
2002-11-08  Jeffrey Stedfast  <fejj@ximian.com>

	* rule-editor.c (rule_edit): Use weak_ref instead of connecting to
	"destroy".
	(rule_add): Same.

svn path=/trunk/; revision=18679
2002-11-08 23:51:26 +00:00
59ca4efdbb Use a GtkDialog instead of a GnomeDialog for reporting errors.
2002-11-07  Jeffrey Stedfast  <fejj@ximian.com>

	* vfolder-rule.c (validate): Use a GtkDialog instead of a
	GnomeDialog for reporting errors.

	* rule-editor.c (rule_add): Use a GtkDialog instead of
	GnomeDialog.
	(rule_edit): Same.
	(add_editor_response): Use a GtkMessageDialog for the error
	reporting instead of a GnomeDialog.
	(edit_editor_response): Same.

	* rule-context.c (rule_context_add_rule_gui): Use a GtkDialog
	instead of a GnomeDialog.

	* filter-rule.c (validate): Use GtkDialog instead of GnomeDialog
	here.

	* filter-input.c (validate): Use GtkDialog instead of GnomeDialog
	here.

	* filter-folder.c (validate): Use GtkDialog instead of GnomeDialog
	here.

	* filter-file.c (validate): Use GtkDialog instead of GnomeDialog
	here.

	* rule-editor.c: Subclass GtkDialog instead of GnomeDialog.

	* filter-datespec.c (validate): Use GtkDialog instead of
	GnomeDialog.
	(button_clicked): Same.

svn path=/trunk/; revision=18651
2002-11-07 23:09:45 +00:00
b0978f82a3 Use GtkDialog instead of GnomeDialog here.
2002-11-07  Jeffrey Stedfast  <fejj@ximian.com>

	* filter-rule.c (validate): Use GtkDialog instead of GnomeDialog
	here.

	* filter-input.c (validate): Use GtkDialog instead of GnomeDialog
	here.

	* filter-folder.c (validate): Use GtkDialog instead of GnomeDialog
	here.

	* filter-file.c (validate): Use GtkDialog instead of GnomeDialog
	here.

	* rule-editor.c: Subclass GtkDialog instead of GnomeDialog.

	* filter-datespec.c (validate): Use GtkDialog instead of
	GnomeDialog.
	(button_clicked): Same.

svn path=/trunk/; revision=18635
2002-11-07 21:20:30 +00:00
d3eca1d96c Deleted most of the internals until we devise a gconf schema and redesign
2002-11-06  Jeffrey Stedfast  <fejj@ximian.com>

	* filter-label.c (xml_create): Deleted most of the internals until
	we devise a gconf schema and redesign how we want to do this. It
	didn't work correctly for 1.2 anyway.

svn path=/trunk/; revision=18618
2002-11-06 23:39:15 +00:00
c49c019456 Converted to the glade-2 format.
2002-11-06  Jeffrey Stedfast  <fejj@ximian.com>

	* filter.glade: Converted to the glade-2 format.

svn path=/trunk/; revision=18585
2002-11-06 06:44:24 +00:00
e5cf0030a0 use G_STRUCT_OFFSET instead of GTK_SIGNAL_OFFSET
svn path=/trunk/; revision=18584
2002-11-06 06:12:07 +00:00
044348407c more build fixes
svn path=/trunk/; revision=18583
2002-11-06 06:08:05 +00:00
29dd432292 a ton more build fixes
svn path=/trunk/; revision=18582
2002-11-06 05:47:50 +00:00
30d40d1932 more build fixes
svn path=/trunk/; revision=18581
2002-11-06 04:23:55 +00:00
1a996b7879 don't #include gnome-defs.h
svn path=/trunk/; revision=18579
2002-11-06 03:37:07 +00:00
4a3104726b fixed gnome-stock stuff
svn path=/trunk/; revision=18578
2002-11-06 03:36:12 +00:00
7d71285ce2 more build fixes
svn path=/trunk/; revision=18577
2002-11-06 03:06:52 +00:00
622d898921 build fixes
svn path=/trunk/; revision=18576
2002-11-06 03:02:03 +00:00
5fbe184005 some build fixes
svn path=/trunk/; revision=18575
2002-11-06 02:40:23 +00:00
c7f67942ca Ported.
2002-11-05  Jeffrey Stedfast  <fejj@ximian.com>

	* filter-filter.c: Ported.

	* filter-source.c (get_widget): Don't use e_utf8_to_gtk_string.

	* filter-option.c (xml_create): Don't use e_utf8_xml1_decode.

	* filter-input.c (xml_encode): Don't use e_utf8_xml1_encode.
	(xml_decode): Don't use e_utf8_xml1_decode.
	(entry_changed): Don't use e_utf8_gtk_entry_get_text.
	(get_widget): Don't use e_utf8_gtk_entry_set_text.

	* filter-file.c (xml_encode): Don't use e_utf8_xml1_encode shit.
	(xml_decode): Don't use e_utf8_xml1_decode.
	(entry_changed): Don't use e_utf8_gtk_entry_get_text.
	(get_widget): Don't use e_utf8_gtk_entry_set_text.

svn path=/trunk/; revision=18570
2002-11-05 22:51:55 +00:00
394f4bee4a Ported.
2002-11-05  Jeffrey Stedfast  <fejj@ximian.com>

	* vfolder-rule.c: Ported.

	* vfolder-editor.c: Ported.

	* vfolder-context.c: Ported.

svn path=/trunk/; revision=18569
2002-11-05 22:17:16 +00:00
24ba58ff63 oops
svn path=/trunk/; revision=18564
2002-11-05 21:22:23 +00:00
5a16ceef07 Ported.
2002-11-05  Jeffrey Stedfast  <fejj@ximian.com>

	* filter-rule.c: Ported.

svn path=/trunk/; revision=18563
2002-11-05 21:20:11 +00:00