Hi All
any one got the code for the horizontal slider for the looknfeel i have attempetd to make one and it shows fine but it lags when using the thumb ie doesnt scroll correctly i tried looking at the windows looknfeel but cant really see where its diffrent than i have
any pointers welcomed
Search found 28 matches
- Sat Feb 27, 2021 19:09
- Forum: Skins and Themes
- Topic: horizontal slider
- Replies: 1
- Views: 17205
- Mon Feb 22, 2021 20:06
- Forum: Help
- Topic: Help with Iter
- Replies: 2
- Views: 7542
Re: Help with Iter
in case its not that clear what i wanted to do
i just need to grab the names of every images in an imageset
so i can can then select a diffrent image
i just need to grab the names of every images in an imageset
so i can can then select a diffrent image
- Mon Feb 22, 2021 16:37
- Forum: Official Unified CEGUI Editor Tool (CEED)
- Topic: ceed error with group box
- Replies: 2
- Views: 16600
ceed error with group box
hi all i get this when trying to add an imagebuttun to a group box Exception message: CEGUI::UnknownObjectException in function 'class CEGUI::NamedElement *__thiscall CEGUI::NamedElement::getChildElement(const class CEGUI::String &) const' (G:\Libraries\CEGUI\cegui\cegui\src\NamedElement.cpp:150...
- Thu Feb 11, 2021 22:08
- Forum: Help
- Topic: Help with Iter
- Replies: 2
- Views: 7542
Help with Iter
Hi Guys, i'm sure ive overlooked something but i'm not sure what :( previously i would // get ptr to named imageset - don't forget this throws if imageset is not present CEGUI::Imageset& imageset = CEGUI::ImagesetManager::getSingleton().get( "pics" ); ItemListbox* Pics_names = static_c...
- Sat Jan 30, 2021 23:59
- Forum: Skins and Themes
- Topic: 0.8.3 profesional skins (gwen skin?)
- Replies: 4
- Views: 24229
Re: 0.8.3 profesional skins (gwen skin?)
maybe because i'm using v0.8.7 but in ceed i get this error when trying to add a ItemListbox allthough it is listed in the GWEN dropdown widget section ? Exception message: CEGUI::UnknownObjectException in function 'const class CEGUI::WidgetLookFeel &__thiscall CEGUI::WidgetLookManager::getWidge...
- Fri Jan 29, 2021 16:51
- Forum: Help
- Topic: scroll static text
- Replies: 3
- Views: 10103
Re: scroll static text
Hi Ident
kind of like credit scroll.
I have a lot of static text with scroll bar but i need this to scroll without user input if possible
kind of like credit scroll.
I have a lot of static text with scroll bar but i need this to scroll without user input if possible
- Fri Jan 29, 2021 00:16
- Forum: Official Unified CEGUI Editor Tool (CEED)
- Topic: [SOLVED]Ceed Error
- Replies: 4
- Views: 15389
Re: Ceed Error
all good now thanks
forgot to install some prerequesist so i started from scracth and followed the wiki article
forgot to install some prerequesist so i started from scracth and followed the wiki article
- Fri Jan 29, 2021 00:15
- Forum: Help
- Topic: scroll static text
- Replies: 3
- Views: 10103
scroll static text
Hi guys
is there a way that i can get the static text to automatically scroll ?
using v0.8.7
is there a way that i can get the static text to automatically scroll ?
using v0.8.7
- Thu Jan 28, 2021 21:54
- Forum: Help
- Topic: Assertion failed: (ms_Singleton), function getSingleton
- Replies: 1
- Views: 7559
Re: Assertion failed: (ms_Singleton), function getSingleton
anything in the error log ?
also i cant see if you have added the default resource groups from the code you posted
also i cant see if you have added the default resource groups from the code you posted
- Thu Jan 28, 2021 21:37
- Forum: Help
- Topic: createFromFile() crashes only in Debug build
- Replies: 1
- Views: 8291
Re: createFromFile() crashes only in Debug build
I cant help with the OpenGL but i could be wrong but SchemeManager::getSingleton().createFromFile("Smeenk.scheme", "schemes"); should be SchemeManager::getSingleton().createFromFile("Smeenk.scheme"); at least it is in my code :) also did you build cegui and deps in debu...
- Fri May 29, 2020 14:02
- Forum: Help
- Topic: help with listbox's
- Replies: 26
- Views: 45885
Re: help with listbox's
so what i mean is each of the listbox items should have its own ID 1 - how many is in the list i.e 1 2 3 4 etc,etc now if i click on one it should pass that ID over to the selection function CEGUI::WindowManager& winMgr = CEGUI::WindowManager::getSingleton(); CEGUI::FrameWindow* pk = static_cast...
- Thu May 28, 2020 15:52
- Forum: Help
- Topic: help with listbox's
- Replies: 26
- Views: 45885
Re: help with listbox's
Hi Ident, sorry for late reply been busy here :( what i'm trying to do here is read a .ini file put the description in the listbox andotherbits in to a couple of editbox's this part i got working fine on startup it reads all the .ini file and adds the descriptions in the listbox great :) but what is...
- Sun May 24, 2020 07:23
- Forum: Help
- Topic: help with listbox's
- Replies: 26
- Views: 45885
Re: help with listbox's
so as im not having to much joy here could you show me how you would do this
dont mean to be a pain but i really am not getting it at the moment
with the code above it just dosnt seem to pass the id over so all that happens is the selection brush moves to the item i clicked on
dont mean to be a pain but i really am not getting it at the moment
with the code above it just dosnt seem to pass the id over so all that happens is the selection brush moves to the item i clicked on
- Tue May 19, 2020 19:51
- Forum: Help
- Topic: help with listbox's
- Replies: 26
- Views: 45885
Re: help with listbox's
ok so if i dont use the subscribe event none are highlighted if i then click on one it will highlight but no change to dislay the new values so basically same as it was before except items not highlighted if that helps you say the subcsribe is old functionality behaveriour ? what should i be useing ...
- Mon May 18, 2020 18:42
- Forum: Help
- Topic: help with listbox's
- Replies: 26
- Views: 45885
Re: help with listbox's
not sure i understand
my subscribe part is
which take me to the select function
my subscribe part is
Code: Select all
list->subscribeEvent(CEGUI::ItemEntry::EventSelectionChanged, CEGUI::Event::Subscriber(&pk::Select, pb));
which take me to the select function