* Renamed bootman to BootManager, and moved it to the applications.
* Renamed its signature to BootManager as well. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40114 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -27,7 +27,7 @@ if $(HAIKU_ATA_STACK) = 1 {
|
|||||||
IDE_ONLY = "" ;
|
IDE_ONLY = "" ;
|
||||||
}
|
}
|
||||||
|
|
||||||
SYSTEM_BIN = "[" addattr alert arp base64 basename bash bc beep bootman bzip2
|
SYSTEM_BIN = "[" addattr alert arp base64 basename bash bc beep bzip2
|
||||||
cal cat catattr checkfs checkitout chgrp chmod chop chown chroot cksum clear
|
cal cat catattr checkfs checkitout chgrp chmod chop chown chroot cksum clear
|
||||||
clockconfig cmp collectcatkeys comm compress copyattr CortexAddOnHost cp
|
clockconfig cmp collectcatkeys comm compress copyattr CortexAddOnHost cp
|
||||||
csplit ctags cut date dc dd desklink df diff diff3 dircolors dirname
|
csplit ctags cut date dc dd desklink df diff diff3 dircolors dirname
|
||||||
@@ -63,11 +63,12 @@ SYSTEM_BIN = "[" addattr alert arp base64 basename bash bc beep bootman bzip2
|
|||||||
zdiff zforce zgrep zip zipcloak <bin>zipgrep zipnote zipsplit zmore znew
|
zdiff zforce zgrep zip zipcloak <bin>zipgrep zipnote zipsplit zmore znew
|
||||||
;
|
;
|
||||||
|
|
||||||
SYSTEM_APPS = AboutSystem ActivityMonitor CharacterMap CodyCam DeskCalc Devices
|
SYSTEM_APPS = AboutSystem ActivityMonitor BootManager CharacterMap CodyCam
|
||||||
DiskProbe DiskUsage DriveSetup CDPlayer Expander Icon-O-Matic Installer
|
DeskCalc Devices DiskProbe DiskUsage DriveSetup CDPlayer Expander
|
||||||
LaunchBox Magnify Mail MediaConverter MediaPlayer MidiPlayer NetworkStatus
|
Icon-O-Matic Installer LaunchBox Magnify Mail MediaConverter MediaPlayer
|
||||||
PackageInstaller People PoorMan PowerStatus ProcessController Screenshot
|
MidiPlayer NetworkStatus PackageInstaller People PoorMan PowerStatus
|
||||||
ShowImage SoundRecorder StyledEdit Terminal TextSearch TV Workspaces
|
ProcessController Screenshot ShowImage SoundRecorder StyledEdit Terminal
|
||||||
|
TextSearch TV Workspaces
|
||||||
;
|
;
|
||||||
SYSTEM_PREFERENCES = Appearance Backgrounds CPUFrequency DataTranslations
|
SYSTEM_PREFERENCES = Appearance Backgrounds CPUFrequency DataTranslations
|
||||||
<preference>Deskbar E-mail FileTypes Fonts Keyboard Keymap Locale Media
|
<preference>Deskbar E-mail FileTypes Fonts Keyboard Keymap Locale Media
|
||||||
|
|||||||
+1
-1
@@ -5,7 +5,7 @@ HaikuSubInclude aboutsystem ;
|
|||||||
HaikuSubInclude activitymonitor ;
|
HaikuSubInclude activitymonitor ;
|
||||||
HaikuSubInclude autoraise ;
|
HaikuSubInclude autoraise ;
|
||||||
HaikuSubInclude bsnow ;
|
HaikuSubInclude bsnow ;
|
||||||
HaikuSubInclude bootman ;
|
HaikuSubInclude bootmanager ;
|
||||||
HaikuSubInclude cdplayer ;
|
HaikuSubInclude cdplayer ;
|
||||||
HaikuSubInclude charactermap ;
|
HaikuSubInclude charactermap ;
|
||||||
HaikuSubInclude clock ;
|
HaikuSubInclude clock ;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright 2008-2009, Haiku Inc. All rights reserved.
|
* Copyright 2008-2010, Haiku Inc. All rights reserved.
|
||||||
* Distributed under the terms of the MIT License.
|
* Distributed under the terms of the MIT License.
|
||||||
*
|
*
|
||||||
* Authors:
|
* Authors:
|
||||||
@@ -67,7 +67,7 @@ resource vector_icon {
|
|||||||
$"AA40FA7D0117810004"
|
$"AA40FA7D0117810004"
|
||||||
};
|
};
|
||||||
|
|
||||||
resource(1, "BEOS:APP_SIG") (#'MIMS') "application/x-vnd.Haiku-bootman";
|
resource(1, "BEOS:APP_SIG") (#'MIMS') "application/x-vnd.Haiku-BootManager";
|
||||||
|
|
||||||
resource(1, "BEOS:FILE_TYPES") message { };
|
resource(1, "BEOS:FILE_TYPES") message { };
|
||||||
|
|
||||||
@@ -1,8 +1,8 @@
|
|||||||
SubDir HAIKU_TOP src apps bootman ;
|
SubDir HAIKU_TOP src apps bootmanager ;
|
||||||
|
|
||||||
UsePrivateHeaders shared storage tracker ;
|
UsePrivateHeaders shared storage tracker ;
|
||||||
|
|
||||||
Application bootman :
|
Application BootManager :
|
||||||
BootManager.cpp
|
BootManager.cpp
|
||||||
BootManagerController.cpp
|
BootManagerController.cpp
|
||||||
BootManagerWindow.cpp
|
BootManagerWindow.cpp
|
||||||
@@ -24,11 +24,11 @@ Application bootman :
|
|||||||
$(HAIKU_LOCALE_LIBS)
|
$(HAIKU_LOCALE_LIBS)
|
||||||
$(TARGET_LIBSUPC++)
|
$(TARGET_LIBSUPC++)
|
||||||
:
|
:
|
||||||
bootman.rdef
|
BootManager.rdef
|
||||||
;
|
;
|
||||||
|
|
||||||
DoCatalogs bootman :
|
DoCatalogs BootManager :
|
||||||
x-vnd.Haiku-bootman
|
x-vnd.Haiku-BootManager
|
||||||
:
|
:
|
||||||
BootManager.cpp
|
BootManager.cpp
|
||||||
BootManagerController.cpp
|
BootManagerController.cpp
|
||||||
@@ -49,7 +49,8 @@
|
|||||||
#define B_TRANSLATE_CONTEXT "InstallerWindow"
|
#define B_TRANSLATE_CONTEXT "InstallerWindow"
|
||||||
|
|
||||||
#define DRIVESETUP_SIG "application/x-vnd.Haiku-DriveSetup"
|
#define DRIVESETUP_SIG "application/x-vnd.Haiku-DriveSetup"
|
||||||
#define BOOTMAN_SIG "application/x-vnd.Haiku-Bootman"
|
#define BOOTMAN_SIG "application/x-vnd.Haiku-BootManager"
|
||||||
|
|
||||||
|
|
||||||
const uint32 BEGIN_MESSAGE = 'iBGN';
|
const uint32 BEGIN_MESSAGE = 'iBGN';
|
||||||
const uint32 SHOW_BOTTOM_MESSAGE = 'iSBT';
|
const uint32 SHOW_BOTTOM_MESSAGE = 'iSBT';
|
||||||
@@ -59,6 +60,7 @@ const uint32 START_SCAN = 'iSSC';
|
|||||||
const uint32 PACKAGE_CHECKBOX = 'iPCB';
|
const uint32 PACKAGE_CHECKBOX = 'iPCB';
|
||||||
const uint32 ENCOURAGE_DRIVESETUP = 'iENC';
|
const uint32 ENCOURAGE_DRIVESETUP = 'iENC';
|
||||||
|
|
||||||
|
|
||||||
class LogoView : public BView {
|
class LogoView : public BView {
|
||||||
public:
|
public:
|
||||||
LogoView(const BRect& frame);
|
LogoView(const BRect& frame);
|
||||||
|
|||||||
@@ -111,7 +111,8 @@ ImageCache::RetrieveImage(const entry_ref& ref, int32 page,
|
|||||||
entry->ref = ref;
|
entry->ref = ref;
|
||||||
entry->page = page;
|
entry->page = page;
|
||||||
|
|
||||||
if (fThreadCount < fMaxThreadCount) {
|
if (fThreadCount < fMaxThreadCount
|
||||||
|
|| (target != NULL && fThreadCount == fMaxThreadCount)) {
|
||||||
// start a new worker thread to load the image
|
// start a new worker thread to load the image
|
||||||
thread_id thread = spawn_thread(&ImageCache::_QueueWorkerThread,
|
thread_id thread = spawn_thread(&ImageCache::_QueueWorkerThread,
|
||||||
"image loader", B_LOW_PRIORITY, this);
|
"image loader", B_LOW_PRIORITY, this);
|
||||||
|
|||||||
Reference in New Issue
Block a user