user-interface

Euler angles vs. Quaternions - problems caused by the tension between internal storage and presentation to the user?

Quaternions are arguably an appropriate choice for representing object rotations internally. They are simple and efficient to interpolate and represent a single orientation unambiguously. However, presenting quaternions in the user interface is generally inappropriate - Euler angles are generally much more familiar to users, and their v...

Scrolling problem in Blackberry application

Hello, I am not able to scroll through the application screen using trackball. I am using Blackberry Pearl 8100 simulator. Please help. Thanks in advance. ...

UI design tools

Hi, I need to find some good tools for designing UI. I need only the design part, I don't need any code generation or anything like that... It would be nice to find some freeware ;) tia ...

Embedding Flash in 3D-rendering binary

I want to embed Flash (2D GUI) in my 3D game C++ application, and it must be portable. Rendering Flash is not enough, I need user action callbacks. I found Hikari for Ogre3D, but I guess the technique it's based on only works on Windows? (It uses OLE.) Further, from what I've heard (unverified) CryEngine uses Flash. Almost forgot the o...

Seeking good examples of Find and Replace user interfaces in text editors and IDEs

I'm working on a Windows application with an integrated text editor, like an IDE. The current Find and Replace features use the standard Windows dialogs, which are showing their age and aren't very powerful. What great examples do you know of Find and Replace functionality, in text editors or IDEs? I'm looking for inspiration for look...

What's a good practice for dividing up presenters in a MVP interface pattern that have grown to large?

One problem that I have frequently run into lately is the problem of my presenter classes growing too large. Usually, I can chop up a regular large class without skipping a beat. But the presenters sometimes are a little more difficult to pare down, without making the code harder to follow. Especially when the page starts filling up...

How can I present and organize complex taxonomy and groupings?

Hi, this is a more generic question: I am trying to find a way to classify a segment of data that have overlapping or sometimes multiple "broad categories." I try to use "tags" as a way to allow some granularity, but I don't have a way to convey the more "top level" categories for people to browse. For example, one of the vendors I am...

Free UI Tools for Developers

As with many developers in small or mid sized shops, I have to put on my designer hat from time to time. I can't really justify buying something like CS4 or other designer tools. I do currently have a small tool bag of helpful, free tools like Paint.NET IconExtract ColorCop Are there any other good ones out there that I should chec...

Modifying the verbs for a file type in Vista

In XP, you can change the verbs for a file type (open, edit, print, etc) via Tools->Folder Options. I can't find this in the Vista. I know there's a programmatic/registry-matic way to do it, but how does one change this in the UI? Googling didn't help me much. ...

Version Comparision of User Generated and Modified Content

I'm working on a project constructing an online collaboration tool. Looking at Wikipedia, I noticed that user-generated itterations of a page can easily be compared to each other; the comparison highlights the differences. Conceptually, what would I need to implement to do pretty much exactly the same? ...

Productivity Gains from using Multi-Touch User Interfaces

Given a typical developer usage, I am wondering how much gains/utility can one derive out of a multi-touch Win7 Laptop or a Surface device. If people have experiences to share or if there were some studies on this please share ...

Fogbugz like dropdown menu

I am searching for a jquery plugin to get a fogbugz like dropdown menu so that you can type in the dropdown menu. This is what it should look like: http://dl.getdropbox.com/u/5910/Jing/2009-05-10_0937.swf ( the old video http://dl.getdropbox.com/u/5910/Jing/2009-05-10_0055.swf ) All the answers have been not giving me the typing part a...

Command buttons position - UI design

Which design do you use? What is the size of a button? In which order? Do you prefer A=OK B=Cancel or A=Cancel B=OK Do you use "Windows" button size: 80x24 px or your own? ...

Can we use more than one mock object in a unit test?

hello, i have read many articles about unit testing.. Most of the articles said that we should not use more than one mock object in a test..but i can't understand why :s sometimes we really need more than one mock object in a test.. ...

Easy way to build Android UI?

Is there a tool or a website that could help me create a UI for an Android application using drag-and-drop? I found this site but want to know if there is a more stable tool or website for this? ...

Cocoa Control/View for displaying list of directories

I'm new to Cocoa development - I want to display an aribitrary number of directory paths in a control/view. What's the best type of built-in control/view for this? Requirements: This should be a flat list only and not a full File System browser. Users should be able to select one (or more) items and remove them (i'll provide a remov...

How to design a linear GUI program

I'm making a simple Qt application. It has 4 screens/pages: Start import Select folder to import images to Accept or reject each image in folder, and when no images left: "No images left" and an OK button. I can't figure out the best way to implement this. I started off with a QWidget, but this quickly got unmanageable. Is a QWizard...

Updating the image of a NSStatusItem

I have a statusItem in the StatusBar. I've retained a reference to it in my class. Now, I want to update the image of the item. In order to this, I wrote a method similar to: -(void)updateStatusIcon:(NSString *)newImage { [statusItem setImage:[NSImage imageNamed:newImage]]; } The image is a valid icon and works when I set it initi...

how can I have more than a UI for a QMainWindow?

I would like to have a QMainWindow that can change it's look at runtime, i.e when a user clicks a button. Besides keeping references to different UI classes generated by the QtDesigner, is there another way of doing that? Maybe by storing each UI in a layout ? What do you think ? ...

What is the best way to implement the graphics for a selected item in a WPF user control?

I have implemented a few different WPF user controls. In doing so I have also implemented a few different ways of implementing the graphics for when an item is selected. I want to find out how others are doing this and what they think is the best way of doing it? Only one solution per answer please. To avoid confusion here are some...