67
67
(defcustom gnuplot-gui-popup-flag nil
68
68
" Non-nil means to open arguments pop-ups automatically.
69
69
This would be done after menu insertion of Gnuplot commands."
70
- :group 'gnuplot-gui
71
70
:type 'boolean )
72
71
73
72
(defvar gnuplot-gui-frame nil
@@ -83,7 +82,6 @@ This would be done after menu insertion of Gnuplot commands."
83
82
(menu-bar-lines . 0 )
84
83
(unsplittable . t ))
85
84
" Frame parameters for the input run-time display frame in Emacs."
86
- :group 'gnuplot-gui
87
85
:type '(repeat (sexp :tag " Parameter:" )))
88
86
89
87
(defcustom gnuplot-gui-fontname-list
@@ -93,7 +91,6 @@ These *must* be quoted, like so \"\\\"Helvetica\\\"\". This allows
93
91
for fonts with names like \" \\ \" Arial Bold Italic\\ \"\" to be treated
94
92
as single entries in the menu-buttons. And it is really important that
95
93
the first entry in the list be a blank string."
96
- :group 'gnuplot-gui
97
94
:type '(repeat (string :tag " Font name:" )))
98
95
99
96
; ; some global variables
@@ -593,7 +590,6 @@ The values are \\='simple, which causes a limited set of plot, splot, or
593
590
fit options to be displayed, and \\= 'complete, which attempts to display
594
591
all options. The \\= 'complete setting is prone to making errors when
595
592
parsing values already in the script buffer."
596
- :group 'gnuplot-gui
597
593
:type '(radio (const :tag " Simple listing" simple)
598
594
(const :tag " Complete listing" complete)))
599
595
@@ -1186,15 +1182,13 @@ into the buffer. TYPE is the object whose arguments are being set."
1186
1182
(:foreground " grey30" ))
1187
1183
(((class color ) (background dark ))
1188
1184
(:foreground " grey70" )))
1189
- " Face used to display message about unknown widget types."
1190
- :group 'gnuplot-gui-faces )
1185
+ " Face used to display message about unknown widget types." )
1191
1186
1192
1187
(defface gnuplot-gui-flat-text-face '((((class color ) (background light ))
1193
1188
(:foreground " MediumBlue" ))
1194
1189
(((class color ) (background dark ))
1195
1190
(:foreground " LightSteelBlue" )))
1196
- " Face used to display message about unknown widget types."
1197
- :group 'gnuplot-gui-faces )
1191
+ " Face used to display message about unknown widget types." )
1198
1192
1199
1193
(defun gnuplot-gui-make-frame (item alist &optional save-frame )
1200
1194
" Open the frame and populate it with widgets.
@@ -1373,24 +1367,21 @@ SAVE-FRAME is non-nil when the widgets are being reset."
1373
1367
(:bold t :foreground " seagreen" ))
1374
1368
(t
1375
1369
(:italic t )))
1376
- " Face used for menu-buttons."
1377
- :group 'gnuplot-gui-faces )
1370
+ " Face used for menu-buttons." )
1378
1371
(defface gnuplot-gui-button-face '((((class color ) (background light ))
1379
1372
(:bold t :foreground " sienna" ))
1380
1373
(((class color ) (background dark ))
1381
1374
(:bold t :foreground " tan" ))
1382
1375
(t
1383
1376
(:italic t )))
1384
- " Face used for push-buttons."
1385
- :group 'gnuplot-gui-faces )
1377
+ " Face used for push-buttons." )
1386
1378
(defface gnuplot-gui-labels-face '((((class color ) (background light ))
1387
1379
(:bold t :foreground " darkslateblue" ))
1388
1380
(((class color ) (background dark ))
1389
1381
(:bold t :foreground " lightslateblue" ))
1390
1382
(t
1391
1383
(:italic t )))
1392
- " Face used for insert and delete button in the labels widget."
1393
- :group 'gnuplot-gui-faces )
1384
+ " Face used for insert and delete button in the labels widget." )
1394
1385
1395
1386
(defun gnuplot-gui-menu-choice (item default list &optional starred )
1396
1387
" Create a menu widget for the Gnuplot GUI.
0 commit comments