/* AbiSource Program Utilities * Copyright (C) 1998 AbiSource, Inc. * * 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. */ #ifndef UT_DIALOGHELPER_H #define UT_DIALOGHELPER_H #include #include #include"ut_types.h" class XAP_Frame; class XAP_App; // This macro sets up stack pointers to be used with the ConvertToUnixString // macro. #define SETUP_UNIX_STRING XML_Char * newstr = NULL; // This macro is for use in Unix dialogs where the strings are to // be stripped of ampersands (Windows accelerator characters). #define CONVERT_TO_UNIX_STRING(str, id, newstr) do { \ FREEP(newstr); \ UT_XML_cloneNoAmpersands(newstr, pSS->getValue(id)); \ } while (0) void connectFocus(GtkWidget *widget,const XAP_Frame *frame); void connectFocusModeless(GtkWidget *widget,const XAP_App *pApp); void connectFocusModelessOther(GtkWidget *widget,const XAP_App *pApp,gboolean (*other_function)(void) ); UT_Bool isTransientWindow(GtkWindow *window,GtkWindow *parent); // This is a very thin message box; only use it for startup errors // or places where you can't use the message box class (like when // you don't have a frame yet). void messageBoxOK(const char * message); // Returns the root window of the X display, useful for doing // pointer or coordinate measurement on an absolute scale. GdkWindowPrivate * getRootWindow(GtkWidget * widget); // Centers a GTK window inside a parent window void centerDialog(GtkWidget * parent, GtkWidget * child); // Returns the index of an entry in a GtkCList by entry contents gint searchCList(GtkCList * clist, char * compareText); // Converts all a given window's &'ed labels into accelerators for the // checkbutton/button. It will also set the accel-groups void createLabelAccelerators( GtkWidget * widget ); #endif /* UT_DIALOGHELPER_H */