The Gnome Chemistry Utils
0.12.13
|
#include <gcp/stringdlg.h>
Public Types | |
enum | data_type { SMILES, INCHI } |
Public Member Functions | |
StringDlg (Document *pDoc, std::string &data, enum data_type type) | |
virtual | ~StringDlg () |
bool | Apply () |
void | Copy () |
void | OnGetData (GtkClipboard *clipboard, GtkSelectionData *selection_data, guint info) |
![]() | |
Dialog (Application *App, char const *filename, const char *windowname, char const *domainname, DialogOwner *owner=NULL, void(*extra_destroy)(gpointer)=NULL, gpointer data=NULL) throw (std::runtime_error) | |
virtual void | Destroy () |
void | Help () |
GtkWindow * | GetWindow () |
void | Present () |
void | SetTransientFor (GtkWindow *window) |
void | SetRealName (char const *name, DialogOwner *owner) throw (std::runtime_error) |
![]() | |
UIBuilder (char const *filename, char const *domain) throw (std::runtime_error) | |
virtual | ~UIBuilder () |
GtkWidget * | GetWidget (char const *wname) |
GtkWidget * | GetRefdWidget (char const *wname) |
GtkComboBox * | GetComboBox (char const *cbname) |
GtkBuilder * | GetBuilder (void) const |
Additional Inherited Members | |
![]() | |
bool | GetNumber (GtkEntry *Entry, double *x, CheckType c=NoCheck, double min=0, double max=0) |
![]() | |
GtkWindow * | dialog |
Application * | m_App |
Represents the dialog used to display the InChI or canonical SMILES of a molecule.
Definition at line 39 of file stringdlg.h.
The string types supported by StringDlg.
Definition at line 45 of file stringdlg.h.
pDoc | the document owning the dialog. |
data | the string to display. |
type | the type of the data. |
Builds a dialog showing the string and display it. type is used to select an appropriate title for the dialog box.
|
virtual |
The destructor.
|
virtual |
Called by the framework to save the string to a file upon user request.
Reimplemented from gcu::Dialog.
void gcp::StringDlg::Copy | ( | ) |
Called by the framework when the user clicks the "Copy" button.
void gcp::StringDlg::OnGetData | ( | GtkClipboard * | clipboard, |
GtkSelectionData * | selection_data, | ||
guint | info | ||
) |
clipboard | the clipboard requesting the data. |
selection_data | the GtkSelectionData to which the string should be copied. |
info | the type of data requested. Unused since only ASCII strings are supported. |
Called by the framework to get the actual data for the clipboard.