Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
GNOME
yelp
Commits
1927dbb6
Commit
1927dbb6
authored
Feb 23, 2014
by
Shaun McCance
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added keybinding to show text cursor
parent
3a1ec44c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
8 deletions
+22
-8
configure.ac
configure.ac
+2
-2
src/yelp-application.c
src/yelp-application.c
+20
-6
No files found.
configure.ac
View file @
1927dbb6
...
...
@@ -27,10 +27,10 @@ GLIB_GSETTINGS
# Library dependecies
PKG_CHECK_MODULES(YELP,
[
gio-2.0 >= 2.3
2
.0
gio-2.0 >= 2.3
8
.0
gio-unix-2.0
gtk+-unix-print-3.0
gtk+-3.0 >= 3.
8.0
gtk+-3.0 >= 3.
11.8
libxml-2.0 >= 2.6.5
libxslt >= 1.1.4
libexslt >= 0.8.1
...
...
src/yelp-application.c
View file @
1927dbb6
...
...
@@ -116,6 +116,8 @@ struct _YelpApplicationPrivate {
GtkActionGroup
*
action_group
;
GPropertyAction
*
show_cursor_action
;
GSettingsBackend
*
backend
;
GSettings
*
gsettings
;
GHashTable
*
docsettings
;
...
...
@@ -142,6 +144,8 @@ yelp_application_init (YelpApplication *app)
(
GDestroyNotify
)
g_free
,
(
GDestroyNotify
)
g_object_unref
);
gtk_application_add_accelerator
(
GTK_APPLICATION
(
app
),
"F7"
,
"app.yelp-application-show-cursor"
,
NULL
);
gtk_application_add_accelerator
(
GTK_APPLICATION
(
app
),
"<Control>f"
,
"win.yelp-window-find"
,
NULL
);
gtk_application_add_accelerator
(
GTK_APPLICATION
(
app
),
"<Control>s"
,
"win.yelp-window-search"
,
NULL
);
gtk_application_add_accelerator
(
GTK_APPLICATION
(
app
),
"<Control>n"
,
"win.yelp-window-new"
,
NULL
);
...
...
@@ -196,6 +200,11 @@ yelp_application_dispose (GObject *object)
priv
->
action_group
=
NULL
;
}
if
(
priv
->
show_cursor_action
)
{
g_object_unref
(
priv
->
show_cursor_action
);
priv
->
show_cursor_action
=
NULL
;
}
if
(
priv
->
gsettings
)
{
g_object_unref
(
priv
->
gsettings
);
priv
->
gsettings
=
NULL
;
...
...
@@ -262,8 +271,7 @@ yelp_application_startup (GApplication *application)
g_set_application_name
(
N_
(
"Help"
));
/* chain up */
G_APPLICATION_CLASS
(
yelp_application_parent_class
)
->
startup
(
application
);
G_APPLICATION_CLASS
(
yelp_application_parent_class
)
->
startup
(
application
);
settings
=
yelp_settings_get_default
();
if
(
editor_mode
)
...
...
@@ -274,20 +282,26 @@ yelp_application_startup (GApplication *application)
NULL
);
/* Use a config file for per-document settings, because
Ryan asked me to. */
keyfile
=
g_build_filename
(
g_get_user_config_dir
(),
"yelp"
,
"yelp.cfg"
,
NULL
);
keyfile
=
g_build_filename
(
g_get_user_config_dir
(),
"yelp"
,
"yelp.cfg"
,
NULL
);
priv
->
backend
=
g_keyfile_settings_backend_new
(
keyfile
,
"/org/gnome/yelp/"
,
"yelp"
);
g_free
(
keyfile
);
/* But the main settings are in dconf */
priv
->
gsettings
=
g_settings_new
(
"org.gnome.yelp"
);
g_settings_bind
(
priv
->
gsettings
,
"show-cursor"
,
settings
,
"show-text-cursor"
,
G_SETTINGS_BIND_DEFAULT
);
priv
->
show_cursor_action
=
g_property_action_new
(
"yelp-application-show-cursor"
,
settings
,
"show-text-cursor"
);
g_action_map_add_action
(
G_ACTION_MAP
(
app
),
G_ACTION
(
priv
->
show_cursor_action
));
g_settings_bind
(
priv
->
gsettings
,
"font-adjustment"
,
settings
,
"font-adjustment"
,
G_SETTINGS_BIND_DEFAULT
);
priv
->
action_group
=
gtk_action_group_new
(
"ApplicationActions"
);
gtk_action_group_set_translation_domain
(
priv
->
action_group
,
GETTEXT_PACKAGE
);
gtk_action_group_add_actions
(
priv
->
action_group
,
...
...
@@ -296,11 +310,11 @@ yelp_application_startup (GApplication *application)
action
=
(
GtkAction
*
)
gtk_toggle_action_new
(
"ShowTextCursor"
,
_
(
"Show Text _Cursor"
),
NULL
,
NULL
);
gtk_action_group_add_action_with_accel
(
priv
->
action_group
,
action
,
"F7"
);
g_settings_bind
(
priv
->
gsettings
,
"show-cursor"
,
action
,
"active"
,
G_SETTINGS_BIND_DEFAULT
);
gtk_action_group_add_action_with_accel
(
priv
->
action_group
,
action
,
"F7"
);
g_object_unref
(
action
);
application_set_font_sensitivity
(
app
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment