Search found 24 matches
- Thu Jan 09, 2020 05:04
- Forum: Help
- Topic: How can I create editbox without falagard look n feel?
- Replies: 7
- Views: 13999
Re: How can I create editbox without falagard look n feel?
Look at the application template on the default branch, it gives u basic info on setups like these maybe u miss something Yeap I already check the cegui sample framework source code. Actually, backspace, delete, home and end keys are work properly. only arrow type buttons are not working. Ok.. I fo...
- Thu Jan 09, 2020 00:18
- Forum: Help
- Topic: How can I create editbox without falagard look n feel?
- Replies: 7
- Views: 13999
Re: How can I create editbox without falagard look n feel?
Ident wrote:Look at the application template on the default branch, it gives u basic info on setups like these maybe u miss something
Yeap I already check the cegui sample framework source code.
Actually, backspace, delete, home and end keys are work properly.
only arrow type buttons are not working.
- Wed Jan 08, 2020 11:03
- Forum: Help
- Topic: How can I create editbox without falagard look n feel?
- Replies: 7
- Views: 13999
Re: How can I create editbox without falagard look n feel?
Have you taken a look at the samples used in the sample browser? it is full of example lines on how to do this. You do not create a Editbox directly, you create a window of the LNF type you want, the rest is data driven. Ok, I understood and fix it. write editbox in looknfeel file and create editbo...
- Wed Jan 08, 2020 05:09
- Forum: Help
- Topic: How can I create editbox without falagard look n feel?
- Replies: 7
- Views: 13999
Re: How can I create editbox without falagard look n feel?
Have you taken a look at the samples used in the sample browser? it is full of example lines on how to do this. You do not create a Editbox directly, you create a window of the LNF type you want, the rest is data driven. Ok, I understood and fix it. write editbox in looknfeel file and create editbo...
- Tue Jan 07, 2020 10:14
- Forum: Help
- Topic: How can I create editbox without falagard look n feel?
- Replies: 7
- Views: 13999
How can I create editbox without falagard look n feel?
Hi I trying to create text edit box with out any looknfeel file(xml). I create class inherit CEGUI::Window class and define CEGUI::EditBox* instance. like below in header file. CEGUI::Editbox* _editBox; and then in source file. _editBox = new CEGUI::Editbox("CEGUI/Editbox", "editBox&q...
- Fri Jun 15, 2018 00:30
- Forum: Help
- Topic: about mouse capture
- Replies: 1
- Views: 9056
about mouse capture
Hi! I have a question about mouse capture in CEGUI. my program based on MFC and renders 3D Scene on CEGUI 0.8.7. To get mouse event from outside of root window, we use a SetCapture and ReleaseCapture. But SetCapture is not supports for both Left and Right mouse button. I should get mouse event from ...
- Mon Feb 26, 2018 02:44
- Forum: Help
- Topic: About font rendering
- Replies: 5
- Views: 9884
Re: About font rendering
Looks like a hinting problem. What Freetype version are you using? Freetype changed the default font hinting engine around 2.6.4, and the new one is... not very good, to put it mildly. Fortunately you can still make it use the old one . I checked a version of Freetype which included in CEGUI, it wa...
- Sat Feb 24, 2018 04:59
- Forum: Help
- Topic: About font rendering
- Replies: 5
- Views: 9884
Re: About font rendering
Looks like a hinting problem. What Freetype version are you using? Freetype changed the default font hinting engine around 2.6.4, and the new one is... not very good, to put it mildly. Fortunately you can still make it use the old one . Hello Niektory! :D Thank you to your advice! I use included ve...
- Thu Feb 22, 2018 00:26
- Forum: Help
- Topic: About font rendering
- Replies: 5
- Views: 9884
Re: About font rendering
No idea what you mean.. screenshot please. Ok, I add screenshot link below.. 1. https://ibb.co/ny3DVx Above is.. CreateFreeTypeFont with arial.ttf(included in windows), enable anti-aliasing, 11.0f point size. 2. https://ibb.co/dDaSqx It's same with 1, except anti-aliasing. It's disable anti-aliasin...
- Wed Feb 21, 2018 08:45
- Forum: Help
- Topic: About font rendering
- Replies: 5
- Views: 9884
About font rendering
Hello!~ I have a question about font rendering(actually.. text rendering) When I use arial font(included in Windows) as 16 pixel point, It looks fine, but.. on 13, 12 ... at small size. Text looks very blurry. So I tried to off anti-aliasing when create free type font, it was terrible.. Is there any...
- Tue Feb 20, 2018 12:05
- Forum: Help
- Topic: [Solved] Can I modify ComboDropList style?
- Replies: 1
- Views: 5831
Re: Can I modify ComboDropList style?
um.. finally, I just create custom drop down box.
It soved!~
It soved!~
- Wed Feb 14, 2018 00:47
- Forum: Help
- Topic: [Solved] Can I modify ComboDropList style?
- Replies: 1
- Views: 5831
[Solved] Can I modify ComboDropList style?
Hi! I comback with some questions! (Font fallback is proceeding slowly.. :rofl: After finish current project, I will do my best..) Anyway.. I need a custom ComboBox which can modify text align, drop down list item's height... etc. especially, Drop down list(ComboDropList)'s items height , I need to ...
- Wed Jan 31, 2018 08:18
- Forum: Help
- Topic: Could I set font per different language?
- Replies: 5
- Views: 8533
Re: Could I set font per different language?
[Would be interesting to try out the changes on the latest 0.8.X version. Would you manage to apply the changes and try them out? I can then look into reviewing and merging it if it actually works for your use-case fine.[/quote] Ok!~ all right. Althought I am a beginner on programming.. , I will try...
- Wed Jan 31, 2018 05:34
- Forum: Help
- Topic: Could I set font per different language?
- Replies: 5
- Views: 8533
Re: Could I set font per different language?
I found about it.
Yes it called by "Font fallback".
here is link about it, someone issued it...
http://cegui.org.uk/forum/viewtopic.php?t=6318
Looks commit about Font fallback.
but looks like ver 0.8.7 doesn't includes it.
Yes it called by "Font fallback".
here is link about it, someone issued it...
http://cegui.org.uk/forum/viewtopic.php?t=6318
Looks commit about Font fallback.
but looks like ver 0.8.7 doesn't includes it.
- Wed Jan 31, 2018 02:52
- Forum: Help
- Topic: Could I set font per different language?
- Replies: 5
- Views: 8533
Re: Could I set font per different language?
andrewfeng123 wrote:I don't think CEGUI knows the text language, you might need to write it yourself.
Is there no way set a unicode range per font files?
because it was exist on previous CEGUI version.