X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fui%2Fgui%2Fpsppire-dialog-action-scatterplot.h;fp=src%2Fui%2Fgui%2Fpsppire-dialog-action-scatterplot.h;h=948ec3b2831a62eddb6624e70bab457e393a209d;hb=612b51515e356bc4dd625a3fb18d0a4f827a1e2c;hp=0000000000000000000000000000000000000000;hpb=e8fd8bbc19102dd21c25433d9c410ccb174931db;p=pspp diff --git a/src/ui/gui/psppire-dialog-action-scatterplot.h b/src/ui/gui/psppire-dialog-action-scatterplot.h new file mode 100644 index 0000000000..948ec3b283 --- /dev/null +++ b/src/ui/gui/psppire-dialog-action-scatterplot.h @@ -0,0 +1,78 @@ +/* PSPPIRE - a graphical user interface for PSPP. + Copyright (C) 2015 Free Software Foundation + + 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 3 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, see . */ + + +#include +#include + +#include "psppire-dialog-action.h" + +#ifndef __PSPPIRE_DIALOG_ACTION_SCATTERPLOT_H__ +#define __PSPPIRE_DIALOG_ACTION_SCATTERPLOT_H__ + +G_BEGIN_DECLS + + +#define PSPPIRE_TYPE_DIALOG_ACTION_SCATTERPLOT (psppire_dialog_action_scatterplot_get_type ()) + +#define PSPPIRE_DIALOG_ACTION_SCATTERPLOT(obj) \ + (G_TYPE_CHECK_INSTANCE_CAST ((obj), \ + PSPPIRE_TYPE_DIALOG_ACTION_SCATTERPLOT, PsppireDialogActionScatterplot)) + +#define PSPPIRE_DIALOG_ACTION_SCATTERPLOT_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_CAST ((klass), \ + PSPPIRE_TYPE_DIALOG_ACTION_SCATTERPLOT, \ + PsppireDialogActionScatterplotClass)) + + +#define PSPPIRE_IS_DIALOG_ACTION_SCATTERPLOT(obj) \ + (G_TYPE_CHECK_INSTANCE_TYPE ((obj), PSPPIRE_TYPE_DIALOG_ACTION_SCATTERPLOT)) + +#define PSPPIRE_IS_DIALOG_ACTION_SCATTERPLOT_CLASS(klass) \ + (G_TYPE_CHECK_CLASS_TYPE ((klass), PSPPIRE_TYPE_DIALOG_ACTION_SCATTERPLOT)) + + +#define PSPPIRE_DIALOG_ACTION_SCATTERPLOT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), \ + PSPPIRE_TYPE_DIALOG_ACTION_SCATTERPLOT, \ + PsppireDialogActionScatterplotClass)) + +typedef struct _PsppireDialogActionScatterplot PsppireDialogActionScatterplot; +typedef struct _PsppireDialogActionScatterplotClass PsppireDialogActionScatterplotClass; + + +struct _PsppireDialogActionScatterplot +{ + PsppireDialogAction parent; + + /*< private >*/ + gboolean dispose_has_run ; + + GtkWidget *x_axis; + GtkWidget *y_axis; +}; + + +struct _PsppireDialogActionScatterplotClass +{ + PsppireDialogActionClass parent_class; +}; + + +GType psppire_dialog_action_scatterplot_get_type (void) ; + +G_END_DECLS + +#endif /* __PSPPIRE_DIALOG_ACTION_SCATTERPLOT_H__ */