Home Implementing AntSnes with Qt part 1: Creating Views
Post
Cancel

Implementing AntSnes with Qt part 1: Creating Views

This is first post on Qt App development series on Symbian. In this series I will describe how I made a new user interface with Qt for AntSnes. The same Ui will be later be used with gpsp and psx4all.
The mobile UI should be pretty much different, than the desktop UI, so there are some challenges ahed. I’m still sure that the UI will be a lot cooler than the old AntSnes UI with Symbian Avkon layer.
The UI will made with two separate views. The emulation view, and the settings view. The are both inherited from the QMainWidget, and they both are controlled by viewcontroller-class. The ViewController is only responsible to call hide() and show() functions to widgets, so there’s allways the correct view shown on the screen.
Here’s an example how the app is started with the viewcontroller class.

1
2
3
4
5
6
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    ViewController* vc = new ViewController();
    return a.exec();
}

Let’s create two views at viewcontroller’s constructor

1
2
3
4
5
6
7
ViewController::ViewController()
{
    emuView = new AntSnesQt();
    emuView->hide();
    settingsView = new EmuSettings();
    settingsView->show();
}

An example how the ViewController is changing the current view:

1
2
3
4
5
ViewController::showSettings()
{
	emuView->hide();
	settingsView->show();
}

I decided to make the app to support only landscape orientation for 5th edition devices (for obious reasons), so I need to forse the orientaiton to the landscape mode. Here’s a tip how it’s done on Symbian. http://wiki.forum.nokia.com/index.php/CS001517_-_Lock_application_orientation_in_Qt_for_Symbian This is first Symbian dependent part of my application. There will be few more Symbian specific implementations, but my goal is to keep the application as close to the vanilla Qt, as possible. I want to keep the door open to the Maemo platform as well 🙂

This post is licensed under CC BY 4.0 by the author.

I’ll be using Qt with gpsp and psx4all ports

Implementing AntSnes with Qt part 2: Creating Settings View

Comments powered by Disqus.