QTfrontend/M3Panel.mm
author smxx
Sat, 27 Mar 2010 14:03:30 +0000
changeset 3107 1fa539758c10
parent 2400 2422ea85d100
child 3697 d5b30d6373fc
permissions -rw-r--r--
Engine: * Added possibility to fade the screen in/out using black or white * Added flash effect to screenshot key * Added fade in for round start * Added fade out for round end * Goal display now ignores first tick. So long loading times no longer "eat" their visibility time.

/*
 *  M3Panel.cpp
 *  
 *
 *  Created by Vittorio on 28/09/09.
 *  Copyright 2009 __MyCompanyName__. All rights reserved.
 *
 */

#include "M3Panel.h"
#include "M3InstallController.h"

#include <Cocoa/Cocoa.h>

class M3Panel::Private
{
public:
        M3InstallController *install;
};

M3Panel::M3Panel(void)
{
	c = new Private;
        
	c->install = [[M3InstallController alloc] init];
	[c->install retain];
        
}

M3Panel::~M3Panel()
{
	[c->install release];
	delete c;
}

void M3Panel::showInstallController()
{
        [c->install displayInstaller];
}