Tagged Questions

18
votes
7answers
9k views

How can I redirect stdout to some visible display in a Windows Application?

I have access to a third party library that does "good stuff." It issues status and progress messages to stdout. In a Console application I can see these messages just fine. In a Windows ...
17
votes
9answers
3k views

GUI-Library for microcontroller

I want to create a GUI driven application for a micro-controller (Atmel XMEGA) that is connected to a 128x64 dots graphics LCD (EA DOGL128-6) and 4 buttons for navigation. Controlling the display ...
10
votes
11answers
2k views

How do I retrofit a GUI to an existing C program?

I've been working on a project of porting an old solaris CL program to run on Linux, and barring some unrelated hardware issues, that's finished. Now I want a GUI for it, so the user can choose among ...
6
votes
2answers
364 views

What is the best library to use when writing GUI applications in C++? [closed]

Possible Duplicate: Gui toolkits, which should I use? I've got a fair bit of C/C++ experience - mostly for writing console application for Windows/Linux, and also a fair bit of C# ...
6
votes
5answers
1k views

Web interface for c++ applications

Our company has a set of 3d modeling softwares written in c++ with qt based gui. We are planning to offer these applications to customers to try them from a web browser. I mean to say, we need to ...
6
votes
10answers
2k views

Introduction to GUI programming with c

I'm new GUI and programming as whole and so far I have a general understanding of c and have spent quite some time writing console applications. I'm trying to learn GUI but have so far been ...
6
votes
4answers
993 views

minimal cross-platform gui lib?

I'm looking for a minimal and easy to learn C or C++ cross platform gui library. In a nutshell I only need the following functionality: application window menu bar some simple dialogs, File-open ...
5
votes
3answers
760 views

Lightweight C/C++ GUI Library with Native Look & Feel

There's many pages on C/C++ GUI libraries out there, but I've had a really hard time finding ones that have a native look and native feel. I've taken a look at GTk+, and the problem is, while those ...
5
votes
3answers
498 views

Simplest possible Ubuntu GUI app

On Windows, no matter which framework you use, all the frameworks need, ultimately, to call the user mode user32::CreateWindowEx API to actually create a window on the desktop. On Ubuntu, or indeed ...
5
votes
1answer
197 views

Structuring Win32 GUI code

I wish to improve my code and file structure in larger Win32 projects with plenty of windows and controls. Currently, I tend to have one header and one source file for the entire implementation of a ...
5
votes
7answers
3k views

Should I learn GTK+ or GTKMM?

I am a C# programmer who started using ubuntu about 2 years ago. I'm wanting to learn GUI programming in either C or C++. I don't really like mono, it tends to crash on my system. I have a basic ...
4
votes
1answer
221 views

hscurses or ncurses, which one to use?

I'm writing a program which needs a UI. The program is in haskell. For the UI, I think of using ncurses library. Should I use hscurses library for haskell and write the UI in haskell or should I use ...
4
votes
6answers
294 views

platform independent GUI

I want to make GUI for my application. It should work on multiple platforms. I want most of the code to be portable for all the OS (unix, windows, MAC). GTK and GLib looks as a good solution. I want ...
4
votes
4answers
306 views

Books/resources on learning Xlib (“the Linux Petzold”?) [closed]

I have stubbornly decided to learn Xlib programming for Linux GUIs, just for fun & the gained experience. I'm young and have lots of time to read useless stuff. Nobody seems to want people to ...
4
votes
5answers
524 views

Gui's with Win32 API

I'm wondering what the correct way of creating Gui's in with Win32 API. Right now I just call the CreateWindowEx in my WM_CREATE event, but I don't think this is the right way to do it. Just as an ...
4
votes
8answers
766 views

What is the best way to design GUI Applications with C?

I always find good tutorials on the subject, but it almost always is C++. Is it hard or just doesn't make sense to make GUI applications with C? A good book, guide or a tutorial is fine. Platform: ...
4
votes
2answers
320 views

Splash screen in Windows

How can I display a splash screen using C or C++ in Windows? What libraries or Windows components would be applicable?
4
votes
11answers
287 views

Should a person new to windowed applications study X, GTK+, or what?

Let's say the factors for valuing a choice are the library of widgets available, the slope of the learning curve, and the degree of portability (platforms it works on). As far a language binding goes, ...
4
votes
3answers
948 views

Automated Testing for C/C++ GUI Applications

I have a GUI application written in C/C++ using gcc. I need some recommendations for writing an automated test system for it. What tools/scripting should be used? The application runs on Windows.
4
votes
7answers
442 views

Approaches to a GUI for a Large C Program

In our Bioinformatics lab we've recently been asked to create a GUI for a program written (and optimized) in C. Any GUI we designed would need to be able to feed input to and receive output from the ...
4
votes
10answers
901 views

Is there a painless way to build a Windows UI in C?

edit alright, I guess C is painful in nature--Just, this part, is particularly painful. Also, there isn't a real reason I'm only writing in C, other than, that's the language I want to write in, and ...
4
votes
9answers
1k views

Copying content from a hidden or clipped window in XP?

I need to copy the content of a window (BitBlt) which is hidden, to another window. The problem is that once I hide the source window, the device context I got isn't painted anymore.
3
votes
3answers
114 views

Using Tk with C

I’m a C programmer with no desire to deal with C++ tool-kits, and I’m trying to build a simple graphical card game. I’m programming under Linux, but I’d like to have the option of a Windows port. ...
3
votes
4answers
123 views

How do I start programming graphical Windows programs? [closed]

After a few minutes of searching I've learned that the Win32 API is the lowest-level way to write graphical Windows programs. Is this true? Is there a way to draw things directly to the video buffer? ...
3
votes
4answers
1k views

How can I do GUI programming in C?

I want to do Graphics programming in C. I had searched a lot about the compiler that provides a rich set of functions for doing GUI programming in C, but I couldn't find anything. Basically I want to ...
3
votes
1answer
309 views

ANSI C graphics extension

I have to make a project for the Windows OS in strics ANSI C (so im not allowed to use C++, C# or Objective-C). And I'm wondering if it is possible to use any kind of graphics. And if it's possible, ...
3
votes
4answers
659 views

How do I draw separators?

I am programming in C, using the Windows API, and would like to know how I could draw separators. I'm a total noob when it comes to writing GUI applications, so I may need a code example. Edit: ...
3
votes
2answers
406 views

Simplest way to integrate python gui app with c console app

I have a c console app which converts a c file to a html file, the c file location is passed to the program as a command line argument.(the app is for the windows platform) What I would like to do is ...
3
votes
7answers
1k views

Cross Platform C library for GUI Apps?

Free of charge, simple to learn/use, Cross Platform C library for GUI Apps? Am I looking for Qt? Bonus question: Can I develop with the said library/toolkit on Mac then recompile on PC/Linux? Super ...
3
votes
1answer
4k views

Installing gtk and compiling using gcc under windows?

I have gcc installed in c:/programfiles (also set as a path variable), and i have all the necessary files for gtk from http://www.gtk.org/download-windows.html, glib,gtk,pango,atk and cairo. Although ...
3
votes
2answers
1k views

Passing messages from subclass to original WndProc

I have been reading the MSDN documentation on subclassing and I have been successful in handling events in a subclass My issue is with passing messages back to the original WndProc. As an example, ...
3
votes
4answers
2k views

How do you place sub controls inside a group box?

When I enable common control visual style support (InitCommonControls()) and I am using any theme other then Windows Classic Theme, buttons inside a group box appear with a black border with square ...
2
votes
2answers
131 views

how to quit the blocking of xlib's XNextEvent

Under windows, the GUI thread usually call GetMessage to waiting for message, when another thread use PoseMessage put a message into the queue, then the GUI thread will return GetMessage (quit ...
2
votes
4answers
79 views

How to write an application that uses the terminal as GUI? (in C)

I'd like to write an application (in C) that uses the terminal of a *nix OS as its GUI. I mean an application of the kinds of emacs, vi etc. that take up the whole terminal window and jump back to the ...
2
votes
2answers
128 views

Is there a simple and yet nice looking GUI library for a C program?

I program mostly in C while studying at university. I was wondering if there is some simple open-source library that would let me make a GUI for a program in C. Things to concider by priority: ...
2
votes
1answer
49 views

Updating Gtk container when adding widgets

I've got some code which populates a GtkVBox with new widgets from some data, after the UI is initially built. So there's some code which runs later looking something like this: gchar* str = ...
2
votes
1answer
74 views

Launching a console app from gui front-end

Could you please tell me the best way to do it? I can use popen, but it is nesessary to create a large buffer for arguments every time I need to launch my application. I can use fork + execv, but then ...
2
votes
3answers
145 views

User Interface for C-code

I've written a code in linux OS which produces prog.out as output file. Now I've to write GUI for the code. what are best ways to write it? PS - I wanted to choose between Java Swings and openGL. ...
2
votes
2answers
393 views

OpenCV - how to enable scrolling to windows with images?

So currently I open images created with openCV with something like cvNamedWindow( "Original Image", CV_WINDOW_AUTOSIZE ); cvShowImage( "Original Image", original ); ...
2
votes
3answers
227 views

How does Windows do its timed Gui animation?

When I use Spy++, I notice that mouse entering a button triggers a series of WM_TIMER . How is Windows doing this? Is it requesting that the OS notify it or call a function pointer after X ...
2
votes
2answers
360 views

GtkButton just shows text but no image

I have a GtkButton inside a GtkHButtonBox that doesn't show the image I'm adding to it. It just shows the text. Here's the code: GtkImage *image = (GtkImage *) ...
2
votes
2answers
419 views

C++ or Python (maybe else) to create GUI for console application in C

I have a Visual C console application (created in VC++2008EE) and I need to add GUI to it. One idea was to invoke the console app as a subprocess and communicate with it using stdin and stdout. I ...
2
votes
3answers
217 views

Library to manage menus in embedded device for C/C++

I'm looking for a library to manage menus. I'm looking for something which is based on configuration files. It doesn't have to manage keyboard input or display, just the menu logic. What I have in ...
2
votes
3answers
602 views

SWT-like GUI toolkit for C or C++

Do you know any cross-platform GUI toolkit like swt for C (using default widgets in each operating system = right pics on eclipse.org/swt) ? There is an implementation of swt for D language called DWT ...
2
votes
2answers
687 views

Custom Windows GUI library

I always wondered how software such as iTunes, Winamp etc is able to create its own UI. How is this accomplished under the Windows platform? Is there any code on the web explaining how one would ...
2
votes
6answers
604 views

C + GUI + Mac OS

i know c and I want to develop applications with GUI for Mac OS. Where do I start?
2
votes
4answers
289 views

GUI for linux c

is it possible to develop a GUI in linux c?? how can be do that??
2
votes
2answers
705 views

How can I work around the GetParent/EnumChildWindows asymmetry?

I recently inspect a GUI with Microsoft's Spy++ and noticed a strange structure; it looked like this (warning, ASCII art ahead): | + 002004D6 "MyRootWindow1" FooClassName | | | + 001F052C ...
2
votes
1answer
1k views

How do I change the background of a STATIC win32 control?

If the parent form of a (text) static control has a pattern on its background, then the area around the static control is an ugly blotch of solid color. How can I paint the background of the static ...
2
votes
1answer
146 views

Picture (logotype) in Vista window header

There is a nice feature in modern windows applications for vista. It is picture in the window header. For instance new skype (v4) and google chrome have it. I was woundering what is technology ...

1 2 3