The title of the (primary) window of (non-document) apps and preferences should be the filename of the executable. File and window names should be changed in tandem in the future. All IMO. Sorry, Marcus, for changing TV-O-Rama. :/ We may want to consider using more proper language, e.g. 'Screensaver' or 'Screen Saver' instead of 'ScreenSaver'. DeskCalc or 'Desk Calculator' should be just Calculator. We should avoid clinging to BeOS history, like with the name CodyCam, which hardly makes any sense anymore, even if you happen to be one of the few BeOS oldtimers.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@23935 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jonas Sundström
2008-02-09 13:26:28 +00:00
parent 176480764b
commit cd6b83ddc1
9 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -600,7 +600,7 @@ CDPlayer::_WatchCDState()
CDPlayerWindow::CDPlayerWindow()
: BWindow(BRect (100, 100, 405, 280), "CD Player", B_TITLED_WINDOW, B_NOT_RESIZABLE |
: BWindow(BRect (100, 100, 405, 280), "CDPlayer", B_TITLED_WINDOW, B_NOT_RESIZABLE |
B_NOT_ZOOMABLE | B_ASYNCHRONOUS_CONTROLS)
{
}
+1 -1
View File
@@ -21,7 +21,7 @@
#include "CalcView.h"
static const char* kWindowTitle = "Desk Calculator";
static const char* kWindowTitle = "DeskCalc";
CalcWindow::CalcWindow(BRect frame)
+1 -1
View File
@@ -35,7 +35,7 @@
//------------------------------------------------------------------------------
MidiPlayerWindow::MidiPlayerWindow()
: BWindow(BRect(0, 0, 1, 1), "MIDI Player", B_TITLED_WINDOW,
: BWindow(BRect(0, 0, 1, 1), "MidiPlayer", B_TITLED_WINDOW,
B_ASYNCHRONOUS_CONTROLS | B_NOT_RESIZABLE | B_NOT_ZOOMABLE)
{
playing = false;
+1 -1
View File
@@ -98,7 +98,7 @@ struct wave_struct
RecorderWindow::RecorderWindow() :
BWindow(BRect(XPOS,YPOS,XPOS+MIN_WIDTH,YPOS+MIN_HEIGHT), "Sound Recorder", B_TITLED_WINDOW,
BWindow(BRect(XPOS,YPOS,XPOS+MIN_WIDTH,YPOS+MIN_HEIGHT), "SoundRecorder", B_TITLED_WINDOW,
B_ASYNCHRONOUS_CONTROLS | B_NOT_V_RESIZABLE),
fPlayer(NULL),
fSoundList(NULL),
+1 -1
View File
@@ -28,7 +28,7 @@
#include <InterfaceDefs.h>
#include <time.h>
#define NAME "TV-O-Rama"
#define NAME "TV"
#define REVISION "unknown"
#define VERSION "1.1"
#define BUILD __DATE__ " "__TIME__
+3 -3
View File
@@ -2,7 +2,7 @@
* Icon-O-Matic.rdef
*/
resource app_signature "application/x-vnd.MarcusOverhagen.TV-O-Rama";
resource app_signature "application/x-vnd.MarcusOverhagen.TV";
resource app_version {
major = 1,
@@ -15,8 +15,8 @@ resource app_version {
internal = 0,
short_info = "TV-O-Rama",
long_info = "TV-O-Rama ©2005-2007 Marcus Overhagen"
short_info = "TV",
long_info = "TV ©2005-2007 Marcus Overhagen"
};
resource app_flags B_SINGLE_LAUNCH;
@@ -574,7 +574,7 @@ ModulesView::_OpenSaver()
ScreenSaverWindow::ScreenSaverWindow()
: BWindow(BRect(50, 50, 496, 375), "Screen Saver",
: BWindow(BRect(50, 50, 496, 375), "ScreenSaver",
B_TITLED_WINDOW, B_ASYNCHRONOUS_CONTROLS /*| B_NOT_ZOOMABLE | B_NOT_RESIZABLE*/)
{
fSettings.Load();
+1 -1
View File
@@ -29,7 +29,7 @@ main()
ChartApp::ChartApp() : BApplication("application/x-vnd.Be.ChartDemo")
{
fWindow = new ChartWindow(BRect(120, 150, 629, 591), "Charts");
fWindow = new ChartWindow(BRect(120, 150, 629, 591), "Chart");
// showing the window will also start the direct connection. If you
// Sync() after the show, the direct connection will be established
@@ -564,7 +564,7 @@ main(int argc, char** argv)
// BRect frame(10.0, 30.0, 790.0, 590.0);
BRect frame(10.0, 30.0, 330.0, 220.0);
show_window(frame, "Bitmap Drawing");
show_window(frame, "BitmapDrawing");
app->Run();