mirror of
https://review.haiku-os.org/haiku
synced 2025-02-07 06:16:11 +01:00
* New logo specific to R1 Alpha/1. * "Setup Partitions" is now always visible, since it will most likely be required to prepare a partition for installation anyways. * The optional packages are still in the GUI, but are collapsed by default as before. As there are currently no optional packages, a message will be displayed if no optional packages are found on the source partition. * The default label for the "Onto" popup is now "Please choose target" instead of the first partition found, even though it is not actually selected yet. * The EULA window is still shown, but it's not based on a BAlert anymore. * Only make main window non-minimizable if the Deskbar is not running (untested). * Style cleanup. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30368 a95241bf-73f2-0310-859d-f6bbb57e9c96
25 lines
481 B
C++
25 lines
481 B
C++
/*
|
|
* Copyright 2005, Jérôme DUVAL. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef INSTALLER_APP_H
|
|
#define INSTALLER_APP_H
|
|
|
|
#include <Application.h>
|
|
#include "InstallerWindow.h"
|
|
|
|
|
|
class InstallerApp : public BApplication {
|
|
public:
|
|
InstallerApp();
|
|
|
|
virtual void MessageReceived(BMessage* message);
|
|
virtual void AboutRequested();
|
|
virtual void ReadyToRun();
|
|
|
|
private:
|
|
BWindow* fEULAWindow;
|
|
};
|
|
|
|
#endif // INSTALLER_APP_H
|