Slightly improved font sensitivity of the top bar.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@16209 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-02-02 18:32:22 +00:00
parent 662dc0bdc8
commit ce3f3b5af2

View File

@ -51,12 +51,12 @@ enum {
set the various UI elements. */ set the various UI elements. */
enum { enum {
TOP_LEFT_LIMIT = 26, TOP_LEFT_LIMIT = 26,
H_BORDER = 8, H_BORDER = 5,
V_BORDER = 2, V_BORDER = 2,
ANIM_LABEL = 52, ANIM_LABEL = 52,
ANIM_POPUP = 85, ANIM_POPUP = 42,
DISP_LABEL = 40, DISP_LABEL = 40,
DISP_POPUP = 88, DISP_POPUP = 42,
BUTTON_WIDTH = 50, BUTTON_WIDTH = 50,
BUTTON_OFFSET = -100, BUTTON_OFFSET = -100,
SPACE_LABEL = 40, SPACE_LABEL = 40,
@ -402,7 +402,7 @@ ChartWindow::ChartWindow(BRect frame, const char *name)
max_height = WINDOW_V_STD - TOP_LEFT_LIMIT; max_height = WINDOW_V_STD - TOP_LEFT_LIMIT;
/* initialise the default setting state */ /* initialise the default setting state */
for (int32 i=0; i<7; i++) for (int32 i = 0; i < 7; i++)
fCurrentSettings.colors[i] = false; fCurrentSettings.colors[i] = false;
fCurrentSettings.colors[1] = true; fCurrentSettings.colors[1] = true;
fCurrentSettings.colors[2] = true; fCurrentSettings.colors[2] = true;
@ -486,7 +486,7 @@ ChartWindow::ChartWindow(BRect frame, const char *name)
fTopView->SetViewColor(background_color); fTopView->SetViewColor(background_color);
AddChild(fTopView); AddChild(fTopView);
h = H_BORDER; h = 2;
v = V_BORDER; v = V_BORDER;
/* instant load vue-meter */ /* instant load vue-meter */
@ -495,7 +495,7 @@ ChartWindow::ChartWindow(BRect frame, const char *name)
fTopView->AddChild(fInstantLoad); fTopView->AddChild(fInstantLoad);
fInstantLoad->SetViewColor(0.0, 0.0, 0.0); fInstantLoad->SetViewColor(0.0, 0.0, 0.0);
h += INSTANT_LOAD+2*H_BORDER; h += INSTANT_LOAD+H_BORDER;
/* camera animation popup */ /* camera animation popup */
menu = new BPopUpMenu("Off"); menu = new BPopUpMenu("Off");
@ -524,7 +524,7 @@ ChartWindow::ChartWindow(BRect frame, const char *name)
popup->SetDivider(popup->StringWidth(popup->Label()) + 4.0f); popup->SetDivider(popup->StringWidth(popup->Label()) + 4.0f);
fTopView->AddChild(popup); fTopView->AddChild(popup);
h += ANIM_LABEL+ANIM_POPUP+H_BORDER; h += ANIM_LABEL + ANIM_POPUP + popup->StringWidth("Slow rotation");
/* display mode popup */ /* display mode popup */
menu = new BPopUpMenu("Off"); menu = new BPopUpMenu("Off");
@ -552,7 +552,7 @@ ChartWindow::ChartWindow(BRect frame, const char *name)
popup->SetDivider(popup->StringWidth(popup->Label()) + 4.0f); popup->SetDivider(popup->StringWidth(popup->Label()) + 4.0f);
fTopView->AddChild(popup); fTopView->AddChild(popup);
h += DISP_LABEL+DISP_POPUP+H_BORDER; h += DISP_LABEL + DISP_POPUP + popup->StringWidth("DirectWindow") + H_BORDER;
/* create the offwindow (invisible) button on the left side. /* create the offwindow (invisible) button on the left side.
this will be used to record the content of the Picture this will be used to record the content of the Picture