/usr/include/gwenhywfar4/gwen-gui-cpp/cppdialog.hpp is in libgwenhywfar60-dev 4.12.0beta-3+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | /***************************************************************************
begin : Fri Jan 22 2010
copyright : (C) 2010 by Martin Preuss
email : martin@libchipcard.de
***************************************************************************
* Please see toplevel file COPYING for license details *
***************************************************************************/
#ifndef CPPDIALOG_HPP
#define CPPDIALOG_HPP
#include <gwen-gui-cpp/api.h>
#include <gwenhywfar/dialog_be.h>
#include <list>
#include <string>
class CppDialog;
/**
* @brief A C++ binding for the C module @ref GWEN_DIALOG
*
* This class simply is a C++ binding for the C module @ref GWEN_DIALOG.
* It redirects C callbacks used by GWEN_DIALOG to virtual functions in
* this class.
*
* @author Martin Preuss<martin@aquamaniac.de>
*/
class CPPGUI_API CppDialog {
friend class CppDialogLinker;
private:
GWEN_DIALOG_SETINTPROPERTY_FN _setIntPropertyFn;
GWEN_DIALOG_GETINTPROPERTY_FN _getIntPropertyFn;
GWEN_DIALOG_SETCHARPROPERTY_FN _setCharPropertyFn;
GWEN_DIALOG_GETCHARPROPERTY_FN _getCharPropertyFn;
public:
CppDialog(GWEN_DIALOG *dlg);
virtual ~CppDialog();
GWEN_DIALOG *getCInterface();
static CPPGUI_API CppDialog *getDialog(GWEN_DIALOG *dlg);
protected:
GWEN_DIALOG *_dialog;
CppDialog();
int emitSignal(GWEN_DIALOG_EVENTTYPE t, const char *sender);
GWEN_WIDGET_TREE *getWidgets() const;
GWEN_WIDGET *findWidgetByName(const char *name);
GWEN_WIDGET *findWidgetByImplData(int index, void *ptr);
virtual int setIntProperty(GWEN_WIDGET *w,
GWEN_DIALOG_PROPERTY prop,
int index,
int value,
int doSignal);
virtual int getIntProperty(GWEN_WIDGET *w,
GWEN_DIALOG_PROPERTY prop,
int index,
int defaultValue);
virtual int setCharProperty(GWEN_WIDGET *w,
GWEN_DIALOG_PROPERTY prop,
int index,
const char *value,
int doSignal);
virtual const char *getCharProperty(GWEN_WIDGET *w,
GWEN_DIALOG_PROPERTY prop,
int index,
const char *defaultValue);
};
#endif /* CPPDIALOG_HPP */
|