1
0
mirror of git://projects.qi-hardware.com/vido.git synced 2025-04-21 12:27:27 +03:00

create search function

function works in general but needs refining, again several articles returned etc


Signed-off-by: Mirko Lindner <mirko@qi-hardware.com>
This commit is contained in:
Mirko Lindner
2009-10-30 12:17:56 +01:00
parent 8e8144a4bb
commit 6575416e60
5 changed files with 98 additions and 5 deletions

34
src/search_dialog.hh Normal file
View File

@@ -0,0 +1,34 @@
/***************************************************************************
* Copyright (C) 2009 by Mirko Lindner *
* mirko@qi-hardware.com *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the *
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <gtkmm/dialog.h>
// #include <gtkmm.h>
#include <gtkmm/window.h>
#include <main_window.hh>
extern main_window parent;
class search_dialog : public Gtk::Dialog{
public:
search_dialog(main_window* parent, Glib::ustring);
~search_dialog();
};