The system through which people interact with a computer. UI stands for User Interface. There's now a Stack Exchange site for UI, Interaction and User Experience design: ux.stackexchange.com

learn more… | top users | synonyms (2)

5
votes
0answers
95 views

OSD support align attribute, and multiple span or div elements, can display multiple columns

Please let me know such an OSD on-screen-display program or techinque for Xorg/Linux platform which can render much richer XML than pango, at least support align attribute, and multiple span or div ...
5
votes
0answers
327 views

FragmentActivity TabHost with Fragment and Activity

I have to implement such diagram-hierarchy in my application. I have got 5 tabs from TabHost. One of them should be Activity cause of specific behaviour. This only one Activity should have both: ...
4
votes
0answers
493 views

Facebook notification from my app appears and disappears

I have a problem since a several days now. Facebook notifications from my app (the red number one) appears and disappears. This functioning properly at first, but then but then stopped working. I ...
3
votes
0answers
94 views

How to implement a popup overlay that can be displayed over any other app in Android

How can I implement a popup overlay for an app that can be displayed over any other app. Facebook implemented a very similar feature called Chatheads in its new Facebook Messanger version. I was ...
3
votes
0answers
156 views

How do I create a second window within a callback procedure? Win32

I'm trying to create a second window if a dialog box from my first window returns a certain way. Unfortunately, if I call CreateWindowEx() from within the callback process of the first window, it ...
3
votes
0answers
298 views

Floating menu on top of all apps

I want to make a menu floating above all applications. I did see this question: creating a system overlay (always on top) button in android but I want it to be functional in ICS too. There is an ...
3
votes
0answers
251 views

Testing WinForms/CompositeUI GUI with SpecFlow, White, Spring and MS Test

I've got a C# desktop application (CompositUI/WinForms). This application connects to a webservice using SmartClient. My task is to introduce (retrofit) tests to this application, using SpecFlow and ...
3
votes
0answers
191 views

How can I create collapsible text using Scala Swing

I simply need to have collapsible text in my Scala application. I am already using the Swing wrapper. Each block of text is stored in it's own object. I just need help finding out how to add the ...
3
votes
0answers
827 views

How do I trigger the redraw of a parent View when any of it's children are redrawn?

Background I have written a custom Android View based on a LinearLayout which I have called ReflectingLayout. The idea is fairly simple, to render a reflection effect below any child Views declared ...
2
votes
0answers
14 views

How to remove a “document” in MongoDB using MongoVUE?

I'm trying to remove an object on my mongodb using mongovue, but I keep getting the following error. Please help and let me know what I'm doing wrong? I right click on the document, hit 'Remove', and ...
2
votes
0answers
26 views

pyqt - displaying widget on top of widget

I'm making an application that shows a map of an area and I'm trying to draw nodes on top of it which can represent information. I made it all worked but did so simply by making 1 custom widget which ...
2
votes
0answers
116 views

Pything tkinter: plot function with canvas, HOMEWORK

An assignment for uni asks me to use tkinter to create a GUI program that takes a function, color, start point, end point and how many steps to take between (line drawn between each step). I have had ...
2
votes
0answers
27 views

Rotating GUI.Box Causes Clipping

I am attempting to rotate 2 different GUI Boxes's on the Z Axis. Each box will have a different Z axis value. The following image shows how I am trying to make them appear(I made the following image ...
2
votes
0answers
40 views

Java Lag when dragging

My problem is more annoying than it is critical to my next steps, but hopefully the fix is simple. I have a background map made up of many square tiles which can be dragged by the user to expose ...
2
votes
0answers
31 views

How to get the top frame height of a dwm extended and maximized window?

I created a window using dwmextendframeintoclientarea, everything is ok except the top frame height is less than the value I settled while the window is maximized. So the text drawn using ...
2
votes
0answers
54 views

Millions of rows in GUI

I would like to implement a GUI handling a huge number of rows and I need to use GTK in Linux. I started having a look at GTKTreeView with lists but I don't think that adding millions of lines ...
2
votes
0answers
145 views

Always On Top Window that stays on top even while showing full screen flash video

I am trying to write a simple subtitle player application for Ubuntu 12.04 that stays on top even while playing a flash video in full-screen. This application will be similar to Greenfish Subtitle ...
2
votes
0answers
141 views

Loading and saving variables in R with gWidgets

For the past few months I've been building a simulation in R I hope to package. It consists of two usable functions, and many internal ones which one of the two usable functions call while looping, to ...
2
votes
0answers
181 views

Choosing a cross-platform graphics library for perfect text rendering

I want to write a simple text editing application in c/c++ ( mainly devoted to source code editing ) with these specifications: cross-platform ( Windows, OS X, Linux ) with the as much as possible ...
2
votes
0answers
97 views

Screen goes blank for activity in Android app when re-entering activity

I have an activity that contains a listview. When another activity shows this activity, everything works fine and I am able to return back to the first activity. But if I then call that same activity ...
2
votes
0answers
37 views

Gadget portal vs browser desktop paradigm

I wanted a somewhat objective analysis between usage of a gadgets-in-a-portal-container paradigm vs a browser-desktop-with-inline-windows paradigm. Examples of the two would be shindig and jquery ...
2
votes
0answers
34 views

Eclipse plug-in/view for quick-editing the command line arguments

In Eclipse, I can get to my main class' command-line arguments using Run | Run Configuration | Arguments - but this is not satisfactory for me. I want to be able to: Always see what the ...
2
votes
0answers
192 views

Matplotlib and wxPython PopupMenu cooperation

I would like to display a context menu over a matplotlib figure inside of a wxPython window when the mouse is clicked. Unfortunately, after it detects the click, the PopupMenu method is called, but ...
2
votes
0answers
146 views

Jquery UI - Sortable List - limited Items - special behaviour

I'm working for the first time with jQuery UI. For my current project the sortable-function comes very handy. Im trying to build some kind of playlist-editor. There is a bunch of tracks (list 1) and ...
2
votes
0answers
70 views

Making an Interactive and Zoomable Radial Tree using Mono

Background Information / Layout I'm trying to display a radial tree as part of a UI. The data for the tree is static, and there are typically a few thousand nodes. Just drawing it, per se, is not a ...
2
votes
0answers
149 views

Set a picture to ActiveX Control in Matlab Gui

In Matlab GUI, if I created a new ActiveX Control of type Microsoft Forms 2.0 Image , The value of property picture in the property inspector window is set to null and can't be changed. Then, How to ...
2
votes
0answers
297 views

Best way to implement Day View / Schedule Android UI

(disclaimer: all my life I've been incredibly far from UIs of any type, shape or form - backend and algorithms were my things, and UX, unfortunately, wasn't. But there's always a moment when ...
2
votes
0answers
122 views

how to refactor gui and business logic in C++

I would like to refactor some GUI app, written in C++ and some GUI framework. There are some dialog classes: Class MyDialogX : public LibraryBaseDialog { }; Class MyDialogY : public ...
2
votes
0answers
142 views

Why table's column names are not displayed here?

I have a problem with seesaw table. When I try to make up and show a simple table, it shows without column names. What I did: At first, I must say that I am using [seesaw "1.4.2"]. Then: ;; Clojure ...
2
votes
0answers
94 views

NUnit GUI throws System.AccessViolationException occasionally with our desktop application

(I opened this new question because this is about a desktop application, it's not ASP.NET or ASP.NET MVC and we don't use MVCContrib, this phenomena is not .NET version specific.) We use NUnit and Moq ...
2
votes
0answers
117 views

How can I detect the android devices is “handset”(UI two bar style) or “tablet”(UI one bottom bar style) on Android 4.0 and 4.1?

Yes. I know this is an old answer. Don't beat me up first. I checked those questions and its always turn to determine the screen size, density, etc. Or someone may say the definition of tablet have ...
2
votes
0answers
131 views

Resizing layouts dynamically with ViewFlipper

I have a layout sizing issue... I have a layout which consists of a ViewFlipper, a LinearLayout (containing a MapView), and a 2nd LinearLayout all in a vertical row. <LinearLayout ...
2
votes
0answers
25 views

Where can I find bambookit?

I'm not sure someone here has ever heard about bambookit, as it is quite rare. But it seems to be a very interesting XUL Motor, if I can believe the very few info available: ...
2
votes
0answers
18 views

Attaching a plugins gui to the hosts gui

I'm writing an application with plugin support. I use C++ and JUCE for that stuff and I want my application to run on windows and MAC OSX (and maybe linux some day). My plugins have their own GUI. ...
2
votes
0answers
68 views

(Java) Setting a new default UI object as early as possible

I've made a custom progress bar UI class that extends BasicProgressBarUI. I know I can change the UI of a progress bar simply by invoking progressBar.setUI(). However, I'm thinking this is a waste of ...
2
votes
0answers
94 views

QCommandLinkButton Bottom Cut Off

In Qt/QtCreator I have come across a problem that I cannot seem to fix. I have 3 QCommandLinkButtons in a vertical layout. In the designer everything seems fine and I have it the way I want it, like ...
2
votes
0answers
105 views

How to enable visual styles for Multi Document Interface(MDI) child windows?

There is a page on MSDN about enabling visual styles for Windows Applications: http://msdn.microsoft.com/en-us/library/bb773175(v=vs.85).aspx . I am developing a Multi Document Interface(MDI) windows ...
2
votes
0answers
110 views

how to avoid chrome paused in debugger markup?

some semi-recent update to chrome now places an overlay on my webpage when paused at a breakpoint. I'm specifically trying to view the state of my page markup at this point and find the overlap is ...
2
votes
0answers
57 views

wxHaskell and Reactive-Banana staticText not Updating Size When Text Changes

I'm trying to build a simple UI as an exercise in learning wxHaskell and Reactive Banana, but I've run into a wall trying to solve a seemingly simple problem. Specifically, I'd like to resize the ...
2
votes
0answers
120 views

Xlib equivalent to QPainter::translate

How can I use xlib functions to implement QPainter::translate functionality. I want xlib to add some xOffset, yOffset to all pixels when it draws. I can keep tow variables xOffset and yOffset and add ...
2
votes
0answers
57 views

How to prevent new line in StyledText after Enter pressed

I need to prevent TextViewer making new lines after I press Enter key in case of preventNewLines flag is enabled. I have this piece of code: TextViewer myTextViewer = new TextViewer(myGroup, ...
2
votes
0answers
416 views

Instagram like Navbar + tableview

im trying to create a tableview like Instagram's main page, in particular im having problems recreating a UI with ALL these 3 features present 1)Top navigation bar hides when tableview is scrolled ...
2
votes
0answers
49 views

Two fields bieng focused at the same time

I'm developing a blackberry application and I'm having some problems setting the initial field focused (which isn't the fist field in the manager). This is a piece of code of the screen's constructor: ...
2
votes
0answers
128 views

Setting the text colour of a RichEdit from a different process

I'm trying to set the background and foreground colour for specific words in a richedit control (class RichEdit20W) from a different process. I have the following C code that I call using python, but ...
2
votes
0answers
149 views

Breadcrumb Consistency / Ajax Form Post and History.Back()

I am currently designing a web app that involves forms that are chained together. For example: Employees Grid > Single Employee Form with Leave Requests Grid > Single Leave Request Form with ...
2
votes
0answers
145 views

Shape Drawing GUI. Using paintComponent with a class derived from JPanel.

I'm trying to draw a simple gui in which a user adds data and then you press a button and it draws the shape in the window. I failed on the larger program, so I'm back to square one. I'm just trying ...
2
votes
0answers
210 views

How find out if I'm an NSButton with buttonType NSSwitchButton?

I'm subclassing NSButtonCell to customize the drawing (customizable theme). I'd like to customize the way checkboxes and radio buttons are drawn. Does anyone know how to detect whether a button is a ...
2
votes
0answers
78 views

Netbeans sperated topcomponent in editor mode ignores minimum size

In my Netbeans 7.11 application I have an additional separated topcomponent in an editor mode that does not respect the minimum size that I specified using the GUI-builder. The option for "Respect ...
2
votes
0answers
86 views

Application wide number formats?

I've got an application with a fairly large amount (and variety) of swing components. Anyone know if there's a way to set a consistent NumberFormat across all of these components (perhaps via the ...
2
votes
0answers
114 views

How to create a custom GtkHScale slider?

I'm currently designing a GUI to display images on screen using Python 2.6, Glade-3 and GTK. It uses 2 sliders (2 x GtkHScale) in order to "clip" the image of any bright/dark areas. (like below) ...

1 2 3 4 5 72