2001-03-01 Not Zed <NotZed@Ximian.com> * e-filter-bar.c: New type of search bar that interacts with filter contexts to save filters etc. Still probably needs a little cleanpu. 2001-02-28 Not Zed <NotZed@Ximian.com> * e-search-bar.c (add_dropdown): Save the dropdown menu in the struct too. Sigh, this is only so we can scan its content later, ick. (e_search_bar_set_menu_sensitive): New function to se tthe sentisitivty of menyu items based on id. (find_id): New function to find the row and widget for a specific id. (add_option): Renamed to set_option. (add_dropdown): Renamed to set_dropdown. (add_dropdown): ?New function to add a single item. (set_dropdown): Call add_dropdown to add each item. (e_search_bar_add_menu): New public function to add a single item. 2001-02-27 Not Zed <NotZed@Ximian.com> * Makefile.am (libemiscwidgets_a_SOURCES): Added filter-bar.[ch]. * e-search-bar.c (class_init): Init virtual functions. (e_search_bar_set_option): (e_search_bar_set_menu): virtualise calling. (e_search_bar_construct): Call virtual functions to setup menus. * e-search-bar.h (struct _ESearchBarClass): Virtualise add_dropdown/add_option, so certain base options can be created. svn path=/trunk/; revision=8436
79 lines
1.4 KiB
Makefile
79 lines
1.4 KiB
Makefile
# FIXME we use the EClippedLabel widget from EShortcutBar. Probably
|
|
# it should be moved somewhere else.
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/widgets/shortcut-bar \
|
|
$(EXTRA_GNOME_CFLAGS) \
|
|
-DG_LOG_DOMAIN=__FILE__
|
|
|
|
noinst_LIBRARIES = \
|
|
libemiscwidgets.a
|
|
|
|
libemiscwidgets_a_SOURCES = \
|
|
e-calendar.c \
|
|
e-calendar.h \
|
|
e-calendar-item.c \
|
|
e-calendar-item.h \
|
|
e-cell-date-edit.c \
|
|
e-cell-date-edit.h \
|
|
e-clipped-label.c \
|
|
e-clipped-label.h \
|
|
e-dateedit.c \
|
|
e-dateedit.h \
|
|
e-dropdown-button.c \
|
|
e-dropdown-button.h \
|
|
e-filter-bar.c \
|
|
e-filter-bar.h \
|
|
e-messagebox.c \
|
|
e-messagebox.h \
|
|
e-search-bar.c \
|
|
e-search-bar.h \
|
|
e-title-bar.c \
|
|
e-title-bar.h
|
|
|
|
noinst_PROGRAMS = \
|
|
test-calendar \
|
|
test-dateedit \
|
|
test-dropdown-button \
|
|
test-title-bar
|
|
|
|
# test-calendar
|
|
|
|
test_calendar_SOURCES = \
|
|
test-calendar.c
|
|
|
|
test_calendar_LDADD = \
|
|
./libemiscwidgets.a \
|
|
../../e-util/libeutil.la \
|
|
$(EXTRA_GNOME_LIBS)
|
|
|
|
# test-dateedit
|
|
|
|
test_dateedit_SOURCES = \
|
|
test-dateedit.c
|
|
|
|
test_dateedit_LDADD = \
|
|
./libemiscwidgets.a \
|
|
../../e-util/libeutil.la \
|
|
$(EXTRA_GNOME_LIBS)
|
|
|
|
# test-dropdown-button
|
|
|
|
test_dropdown_button_SOURCES = \
|
|
test-dropdown-button.c
|
|
|
|
test_dropdown_button_LDADD = \
|
|
./libemiscwidgets.a \
|
|
$(EXTRA_GNOME_LIBS)
|
|
|
|
# test-title-bar
|
|
|
|
test_title_bar_SOURCES = \
|
|
test-title-bar.c
|
|
|
|
test_title_bar_LDADD = \
|
|
./libemiscwidgets.a \
|
|
$(EXTRA_GNOME_LIBS)
|
|
|