Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
48f14de0
Commit
48f14de0
authored
19 years ago
by
deuce
Browse files
Options
Downloads
Patches
Plain Diff
Settings tab now working.
parent
31d38dba
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/sbbs3/gtkuseredit/events.c
+155
-3
155 additions, 3 deletions
src/sbbs3/gtkuseredit/events.c
src/sbbs3/gtkuseredit/gtkuseredit.c
+1
-1
1 addition, 1 deletion
src/sbbs3/gtkuseredit/gtkuseredit.c
src/sbbs3/gtkuseredit/gtkuseredit.glade
+57
-89
57 additions, 89 deletions
src/sbbs3/gtkuseredit/gtkuseredit.glade
with
213 additions
and
93 deletions
src/sbbs3/gtkuseredit/events.c
+
155
−
3
View file @
48f14de0
...
...
@@ -439,6 +439,153 @@ void load_user(GtkWidget *wiggy, gpointer data)
sprintf
(
str
,
"%hu"
,
user
.
fbacks
);
gtk_entry_set_text
(
GTK_ENTRY
(
w
),
str
);
}
/* Settings */
w
=
glade_xml_get_widget
(
xml
,
"cUserAUTOTERM"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the autoterm widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
AUTOTERM
);
w
=
glade_xml_get_widget
(
xml
,
"cUserNO_EXASCII"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the no exascii widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
NO_EXASCII
);
w
=
glade_xml_get_widget
(
xml
,
"cUserANSI"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the ansi widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
ANSI
);
w
=
glade_xml_get_widget
(
xml
,
"cUserCOLOR"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the color widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
COLOR
);
w
=
glade_xml_get_widget
(
xml
,
"cUserRIP"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the RIP widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
RIP
);
w
=
glade_xml_get_widget
(
xml
,
"cUserWIP"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the WIP widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
WIP
);
w
=
glade_xml_get_widget
(
xml
,
"cUserUPAUSE"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the upause widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
UPAUSE
);
w
=
glade_xml_get_widget
(
xml
,
"cUserCOLDKEYS"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the coldkeys widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
COLDKEYS
);
w
=
glade_xml_get_widget
(
xml
,
"cUserSPIN"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the spin widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
SPIN
);
w
=
glade_xml_get_widget
(
xml
,
"cUserRIP"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the RIP widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
RIP
);
w
=
glade_xml_get_widget
(
xml
,
"eRows"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the rows widget
\n
"
);
else
{
sprintf
(
str
,
"%hhu"
,
user
.
rows
);
gtk_entry_set_text
(
GTK_ENTRY
(
w
),
str
);
}
w
=
glade_xml_get_widget
(
xml
,
"cCommandShell"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the command shell widget
\n
"
);
else
gtk_combo_box_set_active
(
GTK_COMBO_BOX
(
w
),
user
.
shell
);
w
=
glade_xml_get_widget
(
xml
,
"cUserEXPERT"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the expert widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
EXPERT
);
w
=
glade_xml_get_widget
(
xml
,
"cUserASK_NSCAN"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the ask new scan widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
ASK_NSCAN
);
w
=
glade_xml_get_widget
(
xml
,
"cUserASK_SSCAN"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the ask to you scan widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
ASK_SSCAN
);
w
=
glade_xml_get_widget
(
xml
,
"cUserCURSUB"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the save current sub widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
CURSUB
);
w
=
glade_xml_get_widget
(
xml
,
"cUserQUIET"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the quiet mode widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
QUIET
);
w
=
glade_xml_get_widget
(
xml
,
"cUserAUTOLOGON"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the auto logon widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
AUTOLOGON
);
w
=
glade_xml_get_widget
(
xml
,
"cUserEXPERT"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the expert widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
misc
&
EXPERT
);
w
=
glade_xml_get_widget
(
xml
,
"cUserCHAT_ECHO"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the chat echo widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
chat
&
CHAT_ECHO
);
w
=
glade_xml_get_widget
(
xml
,
"cUserCHAT_ACTION"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the chat action widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
chat
&
CHAT_ACTION
);
w
=
glade_xml_get_widget
(
xml
,
"cUserCHAT_NOPAGE"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the chat nopage widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
chat
&
CHAT_NOPAGE
);
w
=
glade_xml_get_widget
(
xml
,
"cUserCHAT_NOACT"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the chat no activity widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
chat
&
CHAT_NOACT
);
w
=
glade_xml_get_widget
(
xml
,
"cUserCHAT_SPLITP"
);
if
(
w
==
NULL
)
fprintf
(
stderr
,
"Cannot get the chat split personal widget
\n
"
);
else
gtk_toggle_button_set_active
(
GTK_TOGGLE_BUTTON
(
w
),
user
.
chat
&
CHAT_SPLITP
);
}
int
update_current_user
(
int
new_user
)
...
...
@@ -491,10 +638,15 @@ void last_user(GtkWidget *w, gpointer data)
update_current_user
(
totalusers
);
}
void
show_about_box
(
GtkWidget
*
w
,
gpointer
data
)
void
show_about_box
(
GtkWidget
*
unused
,
gpointer
data
)
{
GladeXML
*
ab
;
ab
=
glade_xml_new
(
"gtkuseredit.glade"
,
"AboutWindow"
,
NULL
);
GtkWidget
*
w
;
w
=
glade_xml_get_widget
(
xml
,
"AboutWindow"
);
if
(
w
==
NULL
)
{
fprintf
(
stderr
,
"Cannot get about window widget
\n
"
);
return
;
}
gtk_widget_show
(
GTK_WIDGET
(
w
));
}
void
user_toggle_delete
(
GtkWidget
*
t
,
gpointer
data
)
...
...
This diff is collapsed.
Click to expand it.
src/sbbs3/gtkuseredit/gtkuseredit.c
+
1
−
1
View file @
48f14de0
...
...
@@ -126,7 +126,7 @@ int main(int argc, char *argv[]) {
glade_init
();
/* load the interface */
xml
=
glade_xml_new
(
"gtkuseredit.glade"
,
"MainWindow"
,
NULL
);
xml
=
glade_xml_new
(
"gtkuseredit.glade"
,
NULL
,
NULL
);
/* connect the signals in the interface */
glade_xml_signal_autoconnect
(
xml
);
/* Set up the global config stuff. */
...
...
This diff is collapsed.
Click to expand it.
src/sbbs3/gtkuseredit/gtkuseredit.glade
+
57
−
89
View file @
48f14de0
...
...
@@ -3566,7 +3566,7 @@
<property
name=
"spacing"
>
0
</property>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton10
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserAUTOTERM
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Auto-Detect
</property>
...
...
@@ -3585,10 +3585,10 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton11
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserNO_EXASCII
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Extended ASCII
</property>
<property
name=
"label"
translatable=
"yes"
>
No
Extended ASCII
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"relief"
>
GTK_RELIEF_NORMAL
</property>
<property
name=
"focus_on_click"
>
True
</property>
...
...
@@ -3604,7 +3604,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton12
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserANSI
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
ANSI
</property>
...
...
@@ -3623,7 +3623,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton13
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserCOLOR
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Colour
</property>
...
...
@@ -3642,7 +3642,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton14
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserRIP
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
RIP
</property>
...
...
@@ -3661,7 +3661,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton15
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserWIP
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
WIP
</property>
...
...
@@ -3680,7 +3680,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton16
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserUPAUSE
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Pause
</property>
...
...
@@ -3699,10 +3699,10 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton17
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserCOLDKEYS
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Hot Keys
</property>
<property
name=
"label"
translatable=
"yes"
>
No
Hot Keys
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"relief"
>
GTK_RELIEF_NORMAL
</property>
<property
name=
"focus_on_click"
>
True
</property>
...
...
@@ -3718,7 +3718,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton18
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserSPIN
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Spinning Cursor
</property>
...
...
@@ -3783,7 +3783,7 @@
</child>
<child>
<widget
class=
"GtkEntry"
id=
"e
ntry54
"
>
<widget
class=
"GtkEntry"
id=
"e
Rows
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"editable"
>
True
</property>
...
...
@@ -3883,10 +3883,10 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton19
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserEXPERT
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Exp
o
rt Menu Mode
</property>
<property
name=
"label"
translatable=
"yes"
>
Exp
e
rt Menu Mode
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"relief"
>
GTK_RELIEF_NORMAL
</property>
<property
name=
"focus_on_click"
>
True
</property>
...
...
@@ -3988,7 +3988,7 @@
<property
name=
"spacing"
>
0
</property>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton20
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserASK_NSCAN
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Ask for New Message Scan
</property>
...
...
@@ -4007,7 +4007,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton21
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserASK_SSCAN
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Ask for Your Message Scan
</property>
...
...
@@ -4026,7 +4026,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton22
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserCURSUB
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Remember Current Sub-Board
</property>
...
...
@@ -4045,7 +4045,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton23
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserQUIET
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Quiet Mode (Q exempt)
</property>
...
...
@@ -4064,7 +4064,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton24
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserAUTOLOGON
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Auto-Logon via IP (V exempt)
</property>
...
...
@@ -4160,7 +4160,7 @@
<property
name=
"spacing"
>
0
</property>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton25
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserCHAT_ECHO
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Multinode Chat Echo
</property>
...
...
@@ -4179,7 +4179,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton26
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserCHAT_ACTION
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Multinode Chat Actions
</property>
...
...
@@ -4198,10 +4198,10 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton27
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserCHAT_NOPAGE
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Available for Internode Chat
</property>
<property
name=
"label"
translatable=
"yes"
>
Not
Available for Internode Chat
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"relief"
>
GTK_RELIEF_NORMAL
</property>
<property
name=
"focus_on_click"
>
True
</property>
...
...
@@ -4217,10 +4217,10 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton28
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserCHAT_NOACT
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Multinode Activity Alerts
</property>
<property
name=
"label"
translatable=
"yes"
>
No
Multinode Activity Alerts
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"relief"
>
GTK_RELIEF_NORMAL
</property>
<property
name=
"focus_on_click"
>
True
</property>
...
...
@@ -4236,7 +4236,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton29
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserCHAT_SPLITP
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Split-screen Private Chat
</property>
...
...
@@ -4386,7 +4386,7 @@
<property
name=
"spacing"
>
0
</property>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton30
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserNETMAIL
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Forward Email to NetMail
</property>
...
...
@@ -4405,7 +4405,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton31
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserCLRSCRN
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Clear Screen Between Messages
</property>
...
...
@@ -4564,7 +4564,7 @@
<property
name=
"spacing"
>
0
</property>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton32
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserQWK_FILES
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Include New Files List
</property>
...
...
@@ -4583,7 +4583,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton33
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserQWK_EMAIL
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Include Unread Email
</property>
...
...
@@ -4602,7 +4602,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton34
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserQWK_ALLMAIL
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Include ALL Email
</property>
...
...
@@ -4621,7 +4621,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton35
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserQWK_DELMAIL
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Delete Email After Download
</property>
...
...
@@ -4640,7 +4640,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton36
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserQWK_BYSELF
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Include Messages From Self
</property>
...
...
@@ -4659,7 +4659,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton37
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserQWK_EXPCTLA
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Expand Ctrl-A Codes to ANSI
</property>
...
...
@@ -4678,10 +4678,10 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton38
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserQWK_RETCTLA
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Strip
Ctrl-A Codes
</property>
<property
name=
"label"
translatable=
"yes"
>
Retain
Ctrl-A Codes
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"relief"
>
GTK_RELIEF_NORMAL
</property>
<property
name=
"focus_on_click"
>
True
</property>
...
...
@@ -4697,7 +4697,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton39
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserQWK_ATTACH
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Include File Attachments
</property>
...
...
@@ -4716,10 +4716,10 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton40
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserQWK_NOINDEX
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Include Index Files
</property>
<property
name=
"label"
translatable=
"yes"
>
Do Not
Include Index Files
</property>
<property
name=
"use_underline"
>
True
</property>
<property
name=
"relief"
>
GTK_RELIEF_NORMAL
</property>
<property
name=
"focus_on_click"
>
True
</property>
...
...
@@ -4735,7 +4735,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton41
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserQWK_TZ
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Include Time Zone (@TZ)
</property>
...
...
@@ -4754,7 +4754,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton42
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserQWK_VIA
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Include Seen-Bys (@VIA)
</property>
...
...
@@ -4773,7 +4773,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton43
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserQWK_NOCTRL
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Extraneous Control Files
</property>
...
...
@@ -4882,7 +4882,7 @@
<property
name=
"spacing"
>
0
</property>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton44
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserANFSCAN
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Auto-New Scan
</property>
...
...
@@ -4901,7 +4901,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton45
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserEXTDESC
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Extended Descriptions
</property>
...
...
@@ -4920,7 +4920,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton46
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserBATCHFLAG
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Batch Flagging
</property>
...
...
@@ -4939,7 +4939,7 @@
</child>
<child>
<widget
class=
"GtkCheckButton"
id=
"c
heckbutton47
"
>
<widget
class=
"GtkCheckButton"
id=
"c
UserAUTOHANG
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
Auto-Hangup After Transfer
</property>
...
...
@@ -5153,7 +5153,7 @@
<property
name=
"window_placement"
>
GTK_CORNER_TOP_LEFT
</property>
<child>
<widget
class=
"GtkTextView"
id=
"t
e
xt
view1
"
>
<widget
class=
"GtkTextView"
id=
"t
E
xt
endedComment
"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"can_focus"
>
True
</property>
<property
name=
"editable"
>
True
</property>
...
...
@@ -5348,48 +5348,16 @@
</child>
</widget>
<widget
class=
"GtkWindow"
id=
"AboutWindow"
>
<property
name=
"width_request"
>
272
</property>
<property
name=
"height_request"
>
118
</property>
<property
name=
"visible"
>
True
</property>
<property
name=
"title"
translatable=
"yes"
>
About Menu Editor
</property>
<property
name=
"type"
>
GTK_WINDOW_TOPLEVEL
</property>
<property
name=
"window_position"
>
GTK_WIN_POS_NONE
</property>
<property
name=
"modal"
>
False
</property>
<property
name=
"resizable"
>
False
</property>
<property
name=
"destroy_with_parent"
>
True
</property>
<property
name=
"icon_name"
>
gtk-about
</property>
<property
name=
"decorated"
>
True
</property>
<property
name=
"skip_taskbar_hint"
>
False
</property>
<property
name=
"skip_pager_hint"
>
False
</property>
<property
name=
"type_hint"
>
GDK_WINDOW_TYPE_HINT_NORMAL
</property>
<property
name=
"gravity"
>
GDK_GRAVITY_NORTH_WEST
</property>
<property
name=
"focus_on_map"
>
True
</property>
<property
name=
"urgency_hint"
>
False
</property>
<child>
<widget
class=
"GtkLabel"
id=
"label73"
>
<property
name=
"visible"
>
True
</property>
<property
name=
"label"
translatable=
"yes"
>
GNU GPL, Copyright 2006, Rob Swindell.
Written By Stephen Hurd
Blah Blah Blah.
</property>
<property
name=
"use_underline"
>
False
</property>
<property
name=
"use_markup"
>
False
</property>
<property
name=
"justify"
>
GTK_JUSTIFY_CENTER
</property>
<property
name=
"wrap"
>
False
</property>
<property
name=
"selectable"
>
False
</property>
<property
name=
"xalign"
>
0.5
</property>
<property
name=
"yalign"
>
0.5
</property>
<property
name=
"xpad"
>
0
</property>
<property
name=
"ypad"
>
0
</property>
<property
name=
"ellipsize"
>
PANGO_ELLIPSIZE_NONE
</property>
<property
name=
"width_chars"
>
-1
</property>
<property
name=
"single_line_mode"
>
False
</property>
<property
name=
"angle"
>
0
</property>
</widget>
</child>
<widget
class=
"GtkAboutDialog"
id=
"AboutWindow"
>
<property
name=
"destroy_with_parent"
>
False
</property>
<property
name=
"name"
translatable=
"yes"
>
Synchronet User Editor
</property>
<property
name=
"copyright"
translatable=
"yes"
>
Copyright 2006 by Rob Swindell
</property>
<property
name=
"comments"
translatable=
"yes"
>
This program may be distributed under the terms of the GNU General Public Licence Version 2.
</property>
<property
name=
"wrap_license"
>
False
</property>
<property
name=
"website"
>
http://www.synchro.net/
</property>
<property
name=
"website_label"
translatable=
"yes"
>
www.synchro.net
</property>
<property
name=
"authors"
>
Stephen Hurd
</property>
<property
name=
"translator_credits"
translatable=
"yes"
comments=
"TRANSLATORS: Replace this string with your names, one name per line."
>
translator-credits
</property>
</widget>
</glade-interface>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment