How to enable fcitx input method in an fltk program running on linux?
I'm trying to input some Chinese characters in my fltk program running on linux but failed. I'm using fcitx, and specifically fcitx-googlepinyin
as the Chinese input method.
The following code will produce a single window containing a single input box.
#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Input.H>
int main(int argc, char **argv) {
Fl::scheme("GTK+");
Fl::background(35, 35, 35);
Fl::background2(90, 90, 90);
Fl::foreground(240, 240, 240);
Fl_Window *window = new Fl_Window(640, 480);
Fl_Input *input = new Fl_Input(20, 20, 200, 20);
window->end();
window->show(argc, argv);
return Fl::run();
}
When I click on the input box, I can't switch to my Chinese input method by pressing ctrl + space
in the fltk program. But in other GUI programs like Firefox or Atom the Chinese input method works well.
I've set some variables as follows:
export XIM="fcitx"
export XIM_PROGRAM="fcitx"
export XMODIFIERS="@im=fcitx"
export GTK_IM_MODULE="fcitx"
export QT_IM_MODULE="fcitx"
How to enable fcitx input method in an fltk program?
fltk fcitx
add a comment |
I'm trying to input some Chinese characters in my fltk program running on linux but failed. I'm using fcitx, and specifically fcitx-googlepinyin
as the Chinese input method.
The following code will produce a single window containing a single input box.
#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Input.H>
int main(int argc, char **argv) {
Fl::scheme("GTK+");
Fl::background(35, 35, 35);
Fl::background2(90, 90, 90);
Fl::foreground(240, 240, 240);
Fl_Window *window = new Fl_Window(640, 480);
Fl_Input *input = new Fl_Input(20, 20, 200, 20);
window->end();
window->show(argc, argv);
return Fl::run();
}
When I click on the input box, I can't switch to my Chinese input method by pressing ctrl + space
in the fltk program. But in other GUI programs like Firefox or Atom the Chinese input method works well.
I've set some variables as follows:
export XIM="fcitx"
export XIM_PROGRAM="fcitx"
export XMODIFIERS="@im=fcitx"
export GTK_IM_MODULE="fcitx"
export QT_IM_MODULE="fcitx"
How to enable fcitx input method in an fltk program?
fltk fcitx
add a comment |
I'm trying to input some Chinese characters in my fltk program running on linux but failed. I'm using fcitx, and specifically fcitx-googlepinyin
as the Chinese input method.
The following code will produce a single window containing a single input box.
#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Input.H>
int main(int argc, char **argv) {
Fl::scheme("GTK+");
Fl::background(35, 35, 35);
Fl::background2(90, 90, 90);
Fl::foreground(240, 240, 240);
Fl_Window *window = new Fl_Window(640, 480);
Fl_Input *input = new Fl_Input(20, 20, 200, 20);
window->end();
window->show(argc, argv);
return Fl::run();
}
When I click on the input box, I can't switch to my Chinese input method by pressing ctrl + space
in the fltk program. But in other GUI programs like Firefox or Atom the Chinese input method works well.
I've set some variables as follows:
export XIM="fcitx"
export XIM_PROGRAM="fcitx"
export XMODIFIERS="@im=fcitx"
export GTK_IM_MODULE="fcitx"
export QT_IM_MODULE="fcitx"
How to enable fcitx input method in an fltk program?
fltk fcitx
I'm trying to input some Chinese characters in my fltk program running on linux but failed. I'm using fcitx, and specifically fcitx-googlepinyin
as the Chinese input method.
The following code will produce a single window containing a single input box.
#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Input.H>
int main(int argc, char **argv) {
Fl::scheme("GTK+");
Fl::background(35, 35, 35);
Fl::background2(90, 90, 90);
Fl::foreground(240, 240, 240);
Fl_Window *window = new Fl_Window(640, 480);
Fl_Input *input = new Fl_Input(20, 20, 200, 20);
window->end();
window->show(argc, argv);
return Fl::run();
}
When I click on the input box, I can't switch to my Chinese input method by pressing ctrl + space
in the fltk program. But in other GUI programs like Firefox or Atom the Chinese input method works well.
I've set some variables as follows:
export XIM="fcitx"
export XIM_PROGRAM="fcitx"
export XMODIFIERS="@im=fcitx"
export GTK_IM_MODULE="fcitx"
export QT_IM_MODULE="fcitx"
How to enable fcitx input method in an fltk program?
fltk fcitx
fltk fcitx
edited Nov 24 '18 at 10:30
TsReaper
asked Nov 24 '18 at 10:24
TsReaperTsReaper
712517
712517
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
After studying X input method, I discover that this is a bug in fltk >= 1.3.4 (fltk-1.3.3 has the correct implementation).
On line 673 of src/Fl_x.cxx
, the correct code should be XSetLocaleModifiers("");
instead of XSetLocaleModifiers("@im=");
. Line 1329 has the same problem.
Just correct these two lines of code and recompile the library, the input methods will work correctly again.
I've also posted a bug report on the website of fltk, check it for more detail.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53457195%2fhow-to-enable-fcitx-input-method-in-an-fltk-program-running-on-linux%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
After studying X input method, I discover that this is a bug in fltk >= 1.3.4 (fltk-1.3.3 has the correct implementation).
On line 673 of src/Fl_x.cxx
, the correct code should be XSetLocaleModifiers("");
instead of XSetLocaleModifiers("@im=");
. Line 1329 has the same problem.
Just correct these two lines of code and recompile the library, the input methods will work correctly again.
I've also posted a bug report on the website of fltk, check it for more detail.
add a comment |
After studying X input method, I discover that this is a bug in fltk >= 1.3.4 (fltk-1.3.3 has the correct implementation).
On line 673 of src/Fl_x.cxx
, the correct code should be XSetLocaleModifiers("");
instead of XSetLocaleModifiers("@im=");
. Line 1329 has the same problem.
Just correct these two lines of code and recompile the library, the input methods will work correctly again.
I've also posted a bug report on the website of fltk, check it for more detail.
add a comment |
After studying X input method, I discover that this is a bug in fltk >= 1.3.4 (fltk-1.3.3 has the correct implementation).
On line 673 of src/Fl_x.cxx
, the correct code should be XSetLocaleModifiers("");
instead of XSetLocaleModifiers("@im=");
. Line 1329 has the same problem.
Just correct these two lines of code and recompile the library, the input methods will work correctly again.
I've also posted a bug report on the website of fltk, check it for more detail.
After studying X input method, I discover that this is a bug in fltk >= 1.3.4 (fltk-1.3.3 has the correct implementation).
On line 673 of src/Fl_x.cxx
, the correct code should be XSetLocaleModifiers("");
instead of XSetLocaleModifiers("@im=");
. Line 1329 has the same problem.
Just correct these two lines of code and recompile the library, the input methods will work correctly again.
I've also posted a bug report on the website of fltk, check it for more detail.
edited Nov 24 '18 at 19:22
answered Nov 24 '18 at 17:44
TsReaperTsReaper
712517
712517
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53457195%2fhow-to-enable-fcitx-input-method-in-an-fltk-program-running-on-linux%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown