aboutsummaryrefslogtreecommitdiff
path: root/src-old/stylesheet_editor.h
blob: a7c77b6c050d3c9bade1d196c9e895e953961e56 (plain)
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
/*
 * stylesheet_editor.h
 *
 * Copyright © 2013-2018 Thomas White <taw@bitwiz.org.uk>
 *
 * This file is part of Colloquium.
 *
 * Colloquium 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 <http://www.gnu.org/licenses/>.
 *
 */

#ifndef STYLESHEET_EDITOR_H
#define STYLESHEET_EDITOR_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <gtk/gtk.h>

#include "presentation.h"
#include "frame.h"

#define COLLOQUIUM_TYPE_STYLESHEET_EDITOR (stylesheet_editor_get_type())

#define COLLOQUIUM_STYLESHEET_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_CAST((obj), \
                                             COLLOQUIUM_TYPE_STYLESHEET_EDITOR, \
                                             StylesheetEditor))

#define COLLOQUIUM_IS_STYLESHEET_EDITOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE((obj), \
                                                COLLOQUIUM_TYPE_STYLESHEET_EDITOR))

#define COLLOQUIUM_STYLESHEET_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST((obj), \
                                                     COLLOQUIUM_TYPE_STYLESHEET_EDITOR, \
                                                     StylesheetEditorClass))

#define COLLOQUIUM_IS_STYLESHEET_EDITOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE((obj), \
                                                        COLLOQUIUM_TYPE_STYLESHEET_EDITOR))

#define COLLOQUIUM_STYLESHEET_EDITOR_GET_CLASS(obj)  (G_TYPE_INSTANCE_GET_CLASS((obj), \
                                                        COLLOQUIUM_TYPE_STYLESHEET_EDITOR, \
                                                        StylesheetEditorClass))


typedef struct _sspriv StylesheetEditorPrivate;

struct _stylesheeteditor
{
	GtkDialog parent_instance;
	GtkWidget *narrative_style_font;
	GtkWidget *narrative_style_fgcol;
	GtkWidget *narrative_style_bgcol;
	GtkWidget *narrative_style_bgcol2;
	GtkWidget *narrative_style_bggrad;
	GtkWidget *narrative_style_paraspace_l;
	GtkWidget *narrative_style_paraspace_r;
	GtkWidget *narrative_style_paraspace_t;
	GtkWidget *narrative_style_paraspace_b;
	GtkWidget *narrative_style_padding_l;
	GtkWidget *narrative_style_padding_r;
	GtkWidget *narrative_style_padding_t;
	GtkWidget *narrative_style_padding_b;
	GtkWidget *narrative_style_alignment;
	GtkWidget *slide_size_w;
	GtkWidget *slide_size_h;
	GtkWidget *slide_style_bgcol;
	GtkWidget *slide_style_bgcol2;
	GtkWidget *slide_style_bggrad;
	GtkWidget *frame_style_font;
	GtkWidget *frame_style_fgcol;
	GtkWidget *frame_style_bgcol;
	GtkWidget *frame_style_bgcol2;
	GtkWidget *frame_style_bggrad;
	GtkWidget *frame_style_paraspace_l;
	GtkWidget *frame_style_paraspace_r;
	GtkWidget *frame_style_paraspace_t;
	GtkWidget *frame_style_paraspace_b;
	GtkWidget *frame_style_padding_l;
	GtkWidget *frame_style_padding_r;
	GtkWidget *frame_style_padding_t;
	GtkWidget *frame_style_padding_b;
	GtkWidget *frame_style_alignment;
	GtkWidget *furniture_selector;
	GtkWidget *furniture_paraspace_l;
	GtkWidget *furniture_paraspace_r;
	GtkWidget *furniture_paraspace_t;
	GtkWidget *furniture_paraspace_b;
	GtkWidget *furniture_padding_l;
	GtkWidget *furniture_padding_r;
	GtkWidget *furniture_padding_t;
	GtkWidget *furniture_padding_b;
	GtkWidget *furniture_font;
	GtkWidget *furniture_fgcol;
	GtkWidget *furniture_bgcol;
	GtkWidget *furniture_bgcol2;
	GtkWidget *furniture_bggrad;
	GtkWidget *furniture_alignment;
	GtkWidget *furniture_w;
	GtkWidget *furniture_h;
	GtkWidget *furniture_x;
	GtkWidget *furniture_y;
	GtkWidget *furniture_w_units;
	GtkWidget *furniture_h_units;
	StylesheetEditorPrivate *priv;
};

struct _stylesheeteditorclass
{
	GtkDialogClass parent_class;
};

typedef struct _stylesheeteditor StylesheetEditor;
typedef struct _stylesheeteditorclass StylesheetEditorClass;

extern StylesheetEditor *stylesheet_editor_new(struct presentation *p);

#endif	/* STYLESHEET_EDITOR_H */