Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Squeekboard-archived-v2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
M33
Squeekboard-archived-v2
Commits
4623d78e
Commit
4623d78e
authored
15 years ago
by
Daiki Ueno
Browse files
Options
Downloads
Patches
Plain Diff
Cosmetic fix.
parent
89cc9ffa
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
docs/reference/eek/eek-sections.txt
+5
-0
5 additions, 0 deletions
docs/reference/eek/eek-sections.txt
eek/eek-drawing.c
+2
-2
2 additions, 2 deletions
eek/eek-drawing.c
eek/eek-keysym.c
+4
-4
4 additions, 4 deletions
eek/eek-keysym.c
eek/eek-keysym.h
+2
-1
2 additions, 1 deletion
eek/eek-keysym.h
with
13 additions
and
7 deletions
docs/reference/eek/eek-sections.txt
+
5
−
0
View file @
4623d78e
...
...
@@ -123,6 +123,7 @@ EekXklLayoutClass
EekXklLayoutPrivate
eek_xkl_layout_new
eek_xkl_layout_set_config
eek_xkl_layout_set_config_full
eek_xkl_layout_set_model
eek_xkl_layout_set_layouts
eek_xkl_layout_set_variants
...
...
@@ -131,6 +132,9 @@ eek_xkl_layout_get_model
eek_xkl_layout_get_layouts
eek_xkl_layout_get_variants
eek_xkl_layout_get_options
eek_xkl_layout_disable_option
eek_xkl_layout_enable_option
eek_xkl_layout_get_option
<SUBSECTION Standard>
EEK_XKL_LAYOUT
EEK_IS_XKL_LAYOUT
...
...
@@ -149,6 +153,7 @@ EekXkbLayoutClass
EekXkbLayoutPrivate
eek_xkb_layout_new
eek_xkb_layout_set_names
eek_xkb_layout_set_names_full
eek_xkb_layout_set_keycodes
eek_xkb_layout_set_geometry
eek_xkb_layout_set_symbols
...
...
This diff is collapsed.
Click to expand it.
eek/eek-drawing.c
+
2
−
2
View file @
4623d78e
...
...
@@ -90,7 +90,7 @@ egf_key_callback (EekElement *element,
gdouble
font_size
;
guint
keysym
;
EekBounds
bounds
;
const
gchar
*
label
;
gchar
*
label
;
keysym
=
eek_key_get_keysym
(
key
);
if
(
keysym
==
EEK_INVALID_KEYSYM
||
...
...
@@ -217,7 +217,7 @@ eek_draw_key_label (cairo_t *cr,
{
guint
keysym
;
EekKeysymCategory
category
;
const
gchar
*
label
;
gchar
*
label
;
PangoLayout
*
layout
;
PangoRectangle
logical_rect
=
{
0
,
};
EekBounds
bounds
;
...
...
This diff is collapsed.
Click to expand it.
eek/eek-keysym.c
+
4
−
4
View file @
4623d78e
...
...
@@ -41,7 +41,7 @@ struct eek_keysym_label {
#include
"eek-unicode-keysym-labels.h"
#include
"eek-keyname-keysym-labels.h"
static
G_CONST_RETURN
gchar
*
static
gchar
*
unichar_to_utf8
(
gunichar
uc
)
{
if
(
g_unichar_isgraph
(
uc
))
{
...
...
@@ -65,7 +65,7 @@ keysym_label_compare (const void *key0, const void *key1)
static
gboolean
find_keysym
(
guint
keysym
,
const
gchar
**
label
,
gchar
**
label
,
EekKeysymCategory
*
category
)
{
struct
eek_keysym_label
bsearch_key
,
*
bsearch_val
;
...
...
@@ -144,10 +144,10 @@ find_keysym (guint keysym,
*
* Return a string representation of @keysym.
*/
G_CONST_RETURN
gchar
*
gchar
*
eek_keysym_to_string
(
guint
keysym
)
{
const
gchar
*
label
;
gchar
*
label
;
if
(
find_keysym
(
keysym
,
&
label
,
NULL
))
return
label
;
...
...
This diff is collapsed.
Click to expand it.
eek/eek-keysym.h
+
2
−
1
View file @
4623d78e
...
...
@@ -51,10 +51,11 @@ typedef enum {
EEK_KEYSYM_CATEGORY_FUNCTION
,
EEK_KEYSYM_CATEGORY_KEYNAME
,
EEK_KEYSYM_CATEGORY_UNKNOWN
,
/*< private >*/
EEK_KEYSYM_CATEGORY_LAST
=
EEK_KEYSYM_CATEGORY_UNKNOWN
}
EekKeysymCategory
;
G_CONST_RETURN
gchar
*
eek_keysym_to_string
(
guint
keysym
);
gchar
*
eek_keysym_to_string
(
guint
keysym
);
EekKeysymCategory
eek_keysym_get_category
(
guint
keysym
);
#endif
/* EEK_KEYSYM_H */
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