moved SearchCriteria from Storage to Core;

added get_text() function to Widgets/EntryBin;
moved advanced search input box to Widgets;
added (first, testing) functionality to search button in advanced search
This commit is contained in:
fgerlits 2005-04-20 14:36:54 +00:00
parent 212f97ea93
commit 0fc4dd64d6
13 changed files with 377 additions and 83 deletions

View file

@ -22,7 +22,7 @@
Author : $Author: fgerlits $
Version : $Revision: 1.3 $
Version : $Revision: 1.4 $
Location : $Source: /home/paul/cvs2svn-livesupport/newcvsrepo/livesupport/modules/widgets/include/LiveSupport/Widgets/EntryBin.h,v $
------------------------------------------------------------------------------*/
@ -65,7 +65,7 @@ using namespace LiveSupport::Core;
* A container, holding a Gtk::Entry as its only child.
*
* @author $Author: fgerlits $
* @version $Revision: 1.3 $
* @version $Revision: 1.4 $
*/
class EntryBin : public BlueBin
{
@ -103,6 +103,17 @@ class EntryBin : public BlueBin
{
return entry;
}
/**
* Return the text of the entry.
*
* @return the get_text() string of the Gtk::Entry.
*/
Glib::ustring
get_text(void) throw ()
{
return getEntry()->get_text();
}
};