#ifndef __FIND_DLG_H #define __FIND_DLG_H /*------------------------------------------------------------------------- * Copyright (c) 1999-2001 Kenneth W. Sodemann (stufflehead@bigfoot.com) *------------------------------------------------------------------------- * find_dlg * * Synopsis: * Find problem reports based on user specified criteria. * * $Id: find_dlg.h,v 1.6 2001/11/03 21:59:19 stuffle Exp $ * * 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 * Free Software Foundation, Inc. * 59 Temple Place, Suite 330 * Boston, MA 02111-1307 USA * *------------------------------------------------------------------------- */ #include #include /*------------------------------------------------------------------------- * Function: destroy_find_dlg * * Synopsis: * If the find dialog currently exists, destroy it. * * Inputs: * None. * * Outputs: * None. * * Return Value: * None. * *------------------------------------------------------------------------- */ void destroy_find_dlg (void); /*------------------------------------------------------------------------- * Function: show_find_dlg * * Synopsis: * If the find dialog currently exists, make sure it is visible. * Otherwise, create the find dialog. * * Inputs: * parent : pointer to the widget set that created this one * conn : pointer to the database connection * * Outputs: * None. * * Return Value: * None. * *------------------------------------------------------------------------- */ void show_find_dlg (GtkWidget *parent, PGconn *conn); #endif