Questions tagged [gui-toolkit]

29 questions
1
vote
4 answers

C++ GUI Toolkit with OpenGL Support

I've been looking for a good C/C++ GUI Toolkit for some time now, and have found these to be the general requirements: I need it to be: Good looking cross-platform C++ or C that will compile w/C++, either is fine OpenGL support …
Prime
  • 4,081
  • 9
  • 47
  • 64
1
vote
2 answers

Standard JS GUI Control Libraries

As far as JS libraries go we have standards like jQuery for making our own tools, but are there very widely used libraries of reusable controls, to make up for all the standard GUI controls not supported in JTML? For instance sliders, tree controls,…
Mr. Boy
  • 60,845
  • 93
  • 320
  • 589
1
vote
3 answers

Cross-platform widget toolkit

I'm looking for a cross-platform widget toolkit that I can use for a C application that I'm developing. This application will only serve as a small front-end. I'm keen on good design and usability. Speed is less of a priority, but I'd still like…
someguy
  • 7,144
  • 12
  • 43
  • 57
1
vote
1 answer

Developing Own gui Controls

I'm developing a gui for a game,then,i need to handle everything,from events to draw the controls,its pretty hard. i have a logical problem,above i will explain what is my question,with a help from a image: I want to make this scrollable area,but i…
user470739
1
vote
0 answers

Disable one item of the radio button in gWidgets

Is it possible to disable the particular item that selected in the radio button? Below is my example code: ts <- c("a", "b", "c") myRadio <- gradio(ts, container = window) #Disable the entire radio button enabled(myRadio) <- FALSE My question is,…
1
vote
2 answers

UIToolkit for Android and Unity

I am making a GUI for my android game project on Unity using the UIToolkit. The Sample Scenes (eg Kitchen Sink) works fine on the Unity Editor. But when I run the exact same sample scenes on the android device , it doesnt work. The Button Texture…
Kyuubi
  • 1,228
  • 3
  • 18
  • 32
0
votes
2 answers

how to change multiple UI elements on runtime

I have many elements on my UI. I want to change the entire UI color. Basically like a new "Skin" for my HUD/Menu in game. What is the best way to do this? In UIBuilder, I can select a selector class and change the color, and it applies to all…
Sander Mez
  • 67
  • 1
  • 8
0
votes
1 answer

Remove border completely from Iup_FlatButton

I am trying to remove the border from a IupFlatButton so that it just looks like text (until pressed). The window so far here: As you can see it still has a small dotted border. My script: #include #include int main(int argc,…
Xantium
  • 11,201
  • 10
  • 62
  • 89
0
votes
0 answers

What (multithreaded?) alternative approaches are there to the "main UI thread" event loop scheme?

I'm conjuring up my own UI framework and have a window in which I can draw stuff working on Windows and Linux. This means I call xcb_wait_for_event or GetMessage to process window related events (such as resizing or closing of a window). Most, if…
rubenvb
  • 74,642
  • 33
  • 187
  • 332
0
votes
1 answer

Different functions or single assignable property with side effects?

I'm designing/writing a small UI toolkit (for self-betterment purposes, what else?) and I am unsure what kind of API would be better in the following senses: lowest WTF? level. most flexible. most succinct, yet descriptive best fit with Standard…
rubenvb
  • 74,642
  • 33
  • 187
  • 332
0
votes
1 answer

Objectively evaluating new GUI toolkits

I was checking out a new GUI toolkit, and my first impression was "wow, this is a lot harder to use than my previous toolkit." But then I wondered, "is it harder because it is unfamiliar, or because there are genuine issues?" What are some…
sourcenouveau
  • 29,356
  • 35
  • 146
  • 243
0
votes
1 answer

Error in terms.formula(formula, data = data) : '.' in formula and no 'data' argument

i created a GUI for regression analysis. svalue(tbl[2,1]) : accept a .csv input file svalue(tbl[4,1]) : provide a dependent variable enter code…
PSP
  • 11
  • 1
  • 1
0
votes
1 answer

Why does a simple method trigger a main loop message and then block?

Here it was told me something I can't understand about wxPython and other GUI toolkits. When I call GetLabel from a 'static text' control, there gets an event enqueued and GetLabel doesn't return until this event was processed by the main loop. Why…
rynd
  • 1,865
  • 5
  • 22
  • 24
-1
votes
1 answer

Is wxNet still a good solution for mono GUI?

I'm looking for opinions from Mono developers. I want to create applications for Linux/Mac/Windows and looking for the best GUI toolkit option. I'm not asking what the best actually is, because that is a matter of opinions. My main question is if…
Mathias Maes
  • 461
  • 1
  • 6
  • 17
1
2