2003-02-15 18:28:22 +03:00
|
|
|
//------------------------------------------------------------------------------
|
2004-09-21 02:50:02 +04:00
|
|
|
// Copyright (c) 2001-2002, Haiku, Inc.
|
2003-02-15 18:28:22 +03:00
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
// copy of this software and associated documentation files (the "Software"),
|
|
|
|
// to deal in the Software without restriction, including without limitation
|
|
|
|
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
// and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
// Software is furnished to do so, subject to the following conditions:
|
|
|
|
//
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
//
|
|
|
|
// File Name: DefaultDecorator.cpp
|
|
|
|
// Author: DarkWyrm <bpmagic@columbus.rr.com>
|
2005-06-08 18:35:25 +04:00
|
|
|
// Description: Default and fallback decorator for the app_server
|
|
|
|
//
|
2003-02-15 18:28:22 +03:00
|
|
|
//------------------------------------------------------------------------------
|
2005-04-19 04:42:42 +04:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2003-07-07 23:48:38 +04:00
|
|
|
#include <Rect.h>
|
2003-02-13 05:13:55 +03:00
|
|
|
#include <View.h>
|
2005-04-19 04:42:42 +04:00
|
|
|
|
2003-02-13 05:13:55 +03:00
|
|
|
#include "ColorUtils.h"
|
2005-04-19 04:42:42 +04:00
|
|
|
#include "DisplayDriver.h"
|
|
|
|
#include "FontServer.h"
|
|
|
|
#include "LayerData.h"
|
2003-07-28 21:09:49 +04:00
|
|
|
#include "PatternHandler.h"
|
2003-02-13 05:13:55 +03:00
|
|
|
#include "RGBColor.h"
|
2003-04-05 05:51:35 +04:00
|
|
|
|
2005-04-19 04:42:42 +04:00
|
|
|
#include "DefaultDecorator.h"
|
2003-09-04 01:43:09 +04:00
|
|
|
|
2004-03-28 19:03:34 +04:00
|
|
|
//#define USE_VIEW_FILL_HACK
|
2003-03-23 23:52:37 +03:00
|
|
|
|
2003-08-31 21:38:34 +04:00
|
|
|
//#define DEBUG_DECORATOR
|
2003-03-23 23:52:37 +03:00
|
|
|
#ifdef DEBUG_DECORATOR
|
2003-09-09 01:48:35 +04:00
|
|
|
# include <stdio.h>
|
|
|
|
# define STRACE(x) printf x
|
|
|
|
#else
|
|
|
|
# define STRACE(x) ;
|
2003-03-23 23:52:37 +03:00
|
|
|
#endif
|
|
|
|
|
2003-02-13 05:13:55 +03:00
|
|
|
DefaultDecorator::DefaultDecorator(BRect rect, int32 wlook, int32 wfeel, int32 wflags)
|
2005-06-03 23:50:30 +04:00
|
|
|
: Decorator(rect, wlook, wfeel, wflags),
|
|
|
|
fTruncatedTitle("")
|
2003-02-13 05:13:55 +03:00
|
|
|
{
|
2005-06-03 23:50:30 +04:00
|
|
|
ServerFont font(_look == B_FLOATING_WINDOW_LOOK ? *fontserver->GetSystemPlain() : *fontserver->GetSystemBold());
|
2005-04-19 04:42:42 +04:00
|
|
|
font.SetFlags(B_FORCE_ANTIALIASING);
|
|
|
|
font.SetSpacing(B_STRING_SPACING);
|
|
|
|
SetFont(&font);
|
2005-06-03 23:50:30 +04:00
|
|
|
|
|
|
|
fFrameColors = new RGBColor[6];
|
|
|
|
fFrameColors[0].SetColor(152, 152, 152);
|
|
|
|
fFrameColors[1].SetColor(255, 255, 255);
|
|
|
|
fFrameColors[2].SetColor(216, 216, 216);
|
|
|
|
fFrameColors[3].SetColor(136, 136, 136);
|
|
|
|
fFrameColors[4].SetColor(152, 152, 152);
|
|
|
|
fFrameColors[5].SetColor(96, 96, 96);
|
2004-06-26 06:15:48 +04:00
|
|
|
|
2003-09-07 01:09:11 +04:00
|
|
|
// Set appropriate colors based on the current focus value. In this case, each decorator
|
|
|
|
// defaults to not having the focus.
|
2003-07-24 23:38:24 +04:00
|
|
|
_SetFocus();
|
2005-06-03 23:50:30 +04:00
|
|
|
|
2003-09-07 01:09:11 +04:00
|
|
|
// Do initial decorator setup
|
2003-02-13 05:13:55 +03:00
|
|
|
_DoLayout();
|
2003-09-09 01:48:35 +04:00
|
|
|
|
2004-10-16 06:02:27 +04:00
|
|
|
STRACE(("DefaultDecorator:\n"));
|
|
|
|
STRACE(("\tFrame (%.1f,%.1f,%.1f,%.1f)\n",rect.left,rect.top,rect.right,rect.bottom));
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
DefaultDecorator::~DefaultDecorator(void)
|
|
|
|
{
|
2004-10-16 06:02:27 +04:00
|
|
|
STRACE(("DefaultDecorator: ~DefaultDecorator()\n"));
|
2005-06-03 23:50:30 +04:00
|
|
|
delete [] fFrameColors;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DefaultDecorator::MoveBy(float x, float y)
|
|
|
|
{
|
|
|
|
MoveBy(BPoint(x,y));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DefaultDecorator::MoveBy(BPoint pt)
|
|
|
|
{
|
|
|
|
STRACE(("DefaultDecorator: Move By (%.1f, %.1f)\n",pt.x,pt.y));
|
|
|
|
// Move all internal rectangles the appropriate amount
|
|
|
|
_frame.OffsetBy(pt);
|
|
|
|
_closerect.OffsetBy(pt);
|
|
|
|
_tabrect.OffsetBy(pt);
|
|
|
|
_resizerect.OffsetBy(pt);
|
|
|
|
_zoomrect.OffsetBy(pt);
|
|
|
|
_borderrect.OffsetBy(pt);
|
|
|
|
|
|
|
|
fLeftBorder.OffsetBy(pt);
|
|
|
|
fRightBorder.OffsetBy(pt);
|
|
|
|
fTopBorder.OffsetBy(pt);
|
|
|
|
fBottomBorder.OffsetBy(pt);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DefaultDecorator::ResizeBy(float x, float y)
|
|
|
|
{
|
|
|
|
ResizeBy(BPoint(x,y));
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
DefaultDecorator::ResizeBy(BPoint pt)
|
|
|
|
{
|
|
|
|
STRACE(("DefaultDecorator: Resize By (%.1f, %.1f)\n",pt.x,pt.y));
|
|
|
|
// Move all internal rectangles the appropriate amount
|
|
|
|
_frame.right += pt.x;
|
|
|
|
_frame.bottom += pt.y;
|
|
|
|
|
|
|
|
_resizerect.OffsetBy(pt);
|
|
|
|
_borderrect.right += pt.x;
|
|
|
|
_borderrect.bottom += pt.y;
|
|
|
|
|
|
|
|
fLeftBorder.bottom += pt.y;
|
|
|
|
fTopBorder.right += pt.x;
|
|
|
|
|
|
|
|
fRightBorder.OffsetBy(pt.x, 0.0);
|
|
|
|
fRightBorder.bottom += pt.y;
|
|
|
|
|
|
|
|
fBottomBorder.OffsetBy(0.0, pt.y);
|
|
|
|
fBottomBorder.right += pt.x;
|
|
|
|
|
|
|
|
// resize tab and layout tab items
|
|
|
|
if (_tabrect.IsValid()) {
|
|
|
|
float tabWidth = fRightBorder.right - fLeftBorder.left;
|
|
|
|
|
|
|
|
if (tabWidth < fMinTabWidth)
|
|
|
|
tabWidth = fMinTabWidth;
|
|
|
|
if (tabWidth > fMaxTabWidth)
|
|
|
|
tabWidth = fMaxTabWidth;
|
|
|
|
|
|
|
|
if (tabWidth != _tabrect.Width()) {
|
|
|
|
_tabrect.right = _tabrect.left + tabWidth;
|
|
|
|
_LayoutTabItems(_tabrect);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw
|
|
|
|
void
|
|
|
|
DefaultDecorator::Draw(BRect update)
|
|
|
|
{
|
|
|
|
STRACE(("DefaultDecorator: Draw(%.1f,%.1f,%.1f,%.1f)\n",update.left,update.top,update.right,update.bottom));
|
|
|
|
|
|
|
|
// We need to draw a few things: the tab, the resize thumb, the borders,
|
|
|
|
// and the buttons
|
|
|
|
|
|
|
|
_DrawFrame(update);
|
|
|
|
_DrawTab(update);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw
|
|
|
|
void
|
|
|
|
DefaultDecorator::Draw()
|
|
|
|
{
|
|
|
|
// Easy way to draw everything - no worries about drawing only certain
|
|
|
|
// things
|
|
|
|
|
|
|
|
_DrawFrame(BRect(fTopBorder.LeftTop(), fBottomBorder.RightBottom()));
|
|
|
|
_DrawTab(_tabrect);
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetSizeLimits
|
|
|
|
void
|
|
|
|
DefaultDecorator::GetSizeLimits(float* minWidth, float* minHeight,
|
|
|
|
float* maxWidth, float* maxHeight) const
|
|
|
|
{
|
|
|
|
if (_tabrect.IsValid())
|
2005-06-08 18:35:25 +04:00
|
|
|
*minWidth = max_c(*minWidth, fMinTabWidth);
|
2005-06-03 23:50:30 +04:00
|
|
|
if (_resizerect.IsValid())
|
|
|
|
*minHeight = max_c(*minHeight, _resizerect.Height() - fBorderWidth);
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetFootprint
|
|
|
|
void
|
|
|
|
DefaultDecorator::GetFootprint(BRegion *region)
|
|
|
|
{
|
|
|
|
STRACE(("DefaultDecorator: Get Footprint\n"));
|
|
|
|
// This function calculates the decorator's footprint in coordinates
|
|
|
|
// relative to the layer. This is most often used to set a WinBorder
|
|
|
|
// object's visible region.
|
|
|
|
if (!region)
|
|
|
|
return;
|
|
|
|
|
|
|
|
region->MakeEmpty();
|
|
|
|
|
|
|
|
if (_look == B_NO_BORDER_WINDOW_LOOK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
region->Include(fLeftBorder);
|
|
|
|
region->Include(fRightBorder);
|
|
|
|
region->Include(fTopBorder);
|
|
|
|
region->Include(fBottomBorder);
|
|
|
|
|
|
|
|
if (_look == B_BORDERED_WINDOW_LOOK)
|
|
|
|
return;
|
|
|
|
|
|
|
|
region->Include(_tabrect);
|
|
|
|
|
|
|
|
if (_look == B_DOCUMENT_WINDOW_LOOK) {
|
|
|
|
// include the rectangular resize knob on the bottom right
|
|
|
|
region->Include(BRect(_frame.right - 13.0f, _frame.bottom - 13.0f,
|
|
|
|
_frame.right, _frame.bottom));
|
|
|
|
}
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
click_type
|
|
|
|
DefaultDecorator::Clicked(BPoint pt, int32 buttons, int32 modifiers)
|
|
|
|
{
|
|
|
|
#ifdef DEBUG_DECORATOR
|
2003-09-07 01:09:11 +04:00
|
|
|
printf("DefaultDecorator: Clicked\n");
|
|
|
|
printf("\tPoint: (%.1f,%.1f)\n",pt.x,pt.y);
|
|
|
|
printf("\tButtons:\n");
|
2005-06-03 23:50:30 +04:00
|
|
|
|
|
|
|
if (buttons == 0) {
|
2003-09-07 01:09:11 +04:00
|
|
|
printf("\t\tNone\n");
|
2005-06-03 23:50:30 +04:00
|
|
|
} else {
|
2003-09-07 01:09:11 +04:00
|
|
|
if(buttons & B_PRIMARY_MOUSE_BUTTON)
|
|
|
|
printf("\t\tPrimary\n");
|
|
|
|
if(buttons & B_SECONDARY_MOUSE_BUTTON)
|
|
|
|
printf("\t\tSecondary\n");
|
|
|
|
if(buttons & B_TERTIARY_MOUSE_BUTTON)
|
|
|
|
printf("\t\tTertiary\n");
|
|
|
|
}
|
2005-06-03 23:50:30 +04:00
|
|
|
|
2003-09-07 01:09:11 +04:00
|
|
|
printf("\tModifiers:\n");
|
2005-06-03 23:50:30 +04:00
|
|
|
|
|
|
|
if (modifiers == 0) {
|
2003-09-07 01:09:11 +04:00
|
|
|
printf("\t\tNone\n");
|
2005-06-03 23:50:30 +04:00
|
|
|
} else {
|
2003-09-07 01:09:11 +04:00
|
|
|
if(modifiers & B_CAPS_LOCK)
|
|
|
|
printf("\t\tCaps Lock\n");
|
|
|
|
if(modifiers & B_NUM_LOCK)
|
|
|
|
printf("\t\tNum Lock\n");
|
|
|
|
if(modifiers & B_SCROLL_LOCK)
|
|
|
|
printf("\t\tScroll Lock\n");
|
|
|
|
if(modifiers & B_LEFT_COMMAND_KEY)
|
|
|
|
printf("\t\t Left Command\n");
|
|
|
|
if(modifiers & B_RIGHT_COMMAND_KEY)
|
|
|
|
printf("\t\t Right Command\n");
|
|
|
|
if(modifiers & B_LEFT_CONTROL_KEY)
|
|
|
|
printf("\t\tLeft Control\n");
|
|
|
|
if(modifiers & B_RIGHT_CONTROL_KEY)
|
|
|
|
printf("\t\tRight Control\n");
|
|
|
|
if(modifiers & B_LEFT_OPTION_KEY)
|
|
|
|
printf("\t\tLeft Option\n");
|
|
|
|
if(modifiers & B_RIGHT_OPTION_KEY)
|
|
|
|
printf("\t\tRight Option\n");
|
|
|
|
if(modifiers & B_LEFT_SHIFT_KEY)
|
|
|
|
printf("\t\tLeft Shift\n");
|
|
|
|
if(modifiers & B_RIGHT_SHIFT_KEY)
|
|
|
|
printf("\t\tRight Shift\n");
|
|
|
|
if(modifiers & B_MENU_KEY)
|
|
|
|
printf("\t\tMenu\n");
|
|
|
|
}
|
2005-06-03 23:50:30 +04:00
|
|
|
#endif // DEBUG_DECORATOR
|
2003-09-07 01:09:11 +04:00
|
|
|
|
|
|
|
// In checking for hit test stuff, we start with the smallest rectangles the user might
|
|
|
|
// be clicking on and gradually work our way out into larger rectangles.
|
2005-06-03 23:50:30 +04:00
|
|
|
if (!(_flags & B_NOT_CLOSABLE) && _closerect.Contains(pt))
|
2003-11-15 03:27:26 +03:00
|
|
|
return DEC_CLOSE;
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
if (!(_flags & B_NOT_ZOOMABLE) && _zoomrect.Contains(pt))
|
2003-11-15 03:27:26 +03:00
|
|
|
return DEC_ZOOM;
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
if (_look == B_DOCUMENT_WINDOW_LOOK && _resizerect.Contains(pt))
|
2003-11-15 03:27:26 +03:00
|
|
|
return DEC_RESIZE;
|
2003-02-13 05:13:55 +03:00
|
|
|
|
|
|
|
// Clicking in the tab?
|
2005-06-03 23:50:30 +04:00
|
|
|
if (_tabrect.Contains(pt)) {
|
2005-06-16 16:32:42 +04:00
|
|
|
// tab sliding in any case if either shift key is held down
|
|
|
|
if (modifiers & B_SHIFT_KEY)
|
|
|
|
return DEC_SLIDETAB;
|
2003-02-13 05:13:55 +03:00
|
|
|
// Here's part of our window management stuff
|
2005-06-03 23:50:30 +04:00
|
|
|
if (buttons == B_SECONDARY_MOUSE_BUTTON)
|
2003-11-15 03:27:26 +03:00
|
|
|
return DEC_MOVETOBACK;
|
|
|
|
return DEC_DRAG;
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// We got this far, so user is clicking on the border?
|
2005-06-03 23:50:30 +04:00
|
|
|
if (fLeftBorder.Contains(pt) || fRightBorder.Contains(pt)
|
|
|
|
|| fTopBorder.Contains(pt) || fBottomBorder.Contains(pt)) {
|
|
|
|
// check resize area
|
|
|
|
if (!(_flags & B_NOT_RESIZABLE) &&
|
|
|
|
(_look == B_TITLED_WINDOW_LOOK || _look == B_FLOATING_WINDOW_LOOK)) {
|
|
|
|
|
|
|
|
BRect temp(BPoint(fBottomBorder.right - 18, fBottomBorder.bottom - 18),
|
|
|
|
fBottomBorder.RightBottom());
|
2004-03-28 19:03:34 +04:00
|
|
|
if (temp.Contains(pt))
|
|
|
|
return DEC_RESIZE;
|
|
|
|
}
|
2005-06-03 23:50:30 +04:00
|
|
|
// NOTE: On R5, windows are not moved to back if clicked inside the resize area with
|
|
|
|
// the second mouse button. So we check this after the check above
|
|
|
|
if (buttons == B_SECONDARY_MOUSE_BUTTON)
|
|
|
|
return DEC_MOVETOBACK;
|
|
|
|
|
2003-11-15 03:27:26 +03:00
|
|
|
return DEC_DRAG;
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Guess user didn't click anything
|
2003-11-15 03:27:26 +03:00
|
|
|
return DEC_NONE;
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
void
|
|
|
|
DefaultDecorator::_DoLayout()
|
2003-02-13 05:13:55 +03:00
|
|
|
{
|
2004-10-16 06:02:27 +04:00
|
|
|
STRACE(("DefaultDecorator: Do Layout\n"));
|
2003-02-13 05:13:55 +03:00
|
|
|
// Here we determine the size of every rectangle that we use
|
|
|
|
// internally when we are given the size of the client rectangle.
|
2003-07-28 21:09:49 +04:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
bool hasTab = false;
|
|
|
|
|
|
|
|
switch (GetLook()) {
|
2003-07-28 21:09:49 +04:00
|
|
|
case B_MODAL_WINDOW_LOOK:
|
2005-06-03 23:50:30 +04:00
|
|
|
fBorderWidth = 5;
|
|
|
|
break;
|
|
|
|
|
2003-07-24 23:38:24 +04:00
|
|
|
case B_TITLED_WINDOW_LOOK:
|
|
|
|
case B_DOCUMENT_WINDOW_LOOK:
|
2005-06-03 23:50:30 +04:00
|
|
|
hasTab = true;
|
|
|
|
fBorderWidth = 5;
|
|
|
|
break;
|
|
|
|
case B_FLOATING_WINDOW_LOOK:
|
|
|
|
hasTab = true;
|
|
|
|
fBorderWidth = 3;
|
2003-07-24 23:38:24 +04:00
|
|
|
break;
|
2005-06-03 23:50:30 +04:00
|
|
|
|
|
|
|
case B_BORDERED_WINDOW_LOOK:
|
|
|
|
fBorderWidth = 1;
|
|
|
|
break;
|
|
|
|
|
2003-07-24 23:38:24 +04:00
|
|
|
default:
|
2005-06-03 23:50:30 +04:00
|
|
|
fBorderWidth = 0;
|
2003-07-24 23:38:24 +04:00
|
|
|
}
|
2003-08-31 21:38:34 +04:00
|
|
|
|
2003-09-07 01:09:11 +04:00
|
|
|
// calculate our tab rect
|
2005-06-03 23:50:30 +04:00
|
|
|
if (hasTab) {
|
2005-06-16 16:32:42 +04:00
|
|
|
// tab is initially on the left
|
|
|
|
fTabOffset = 0;
|
2005-06-03 23:50:30 +04:00
|
|
|
// distance from one item of the tab bar to another.
|
|
|
|
// In this case the text and close/zoom rects
|
2005-06-16 16:32:42 +04:00
|
|
|
fTextOffset = (_look == B_FLOATING_WINDOW_LOOK) ? 12 : 20;
|
2005-06-08 18:35:25 +04:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
font_height fh;
|
|
|
|
_drawdata.Font().Height(&fh);
|
|
|
|
|
|
|
|
_tabrect.Set(_frame.left - fBorderWidth,
|
|
|
|
_frame.top - fBorderWidth - ceilf(fh.ascent + fh.descent + 7.0),
|
|
|
|
((_frame.right - _frame.left) < 35.0 ?
|
|
|
|
_frame.left + 35.0 : _frame.right) + fBorderWidth,
|
|
|
|
_frame.top - fBorderWidth);
|
|
|
|
|
|
|
|
// format tab rect for a floating window - make the rect smaller
|
|
|
|
if (_look == B_FLOATING_WINDOW_LOOK) {
|
|
|
|
_tabrect.InsetBy(0, 2);
|
|
|
|
_tabrect.OffsetBy(0, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
float offset;
|
|
|
|
float size;
|
|
|
|
_GetButtonSizeAndOffset(_tabrect, &offset, &size);
|
|
|
|
|
|
|
|
// fMinTabWidth contains just the room for the buttons
|
|
|
|
fMinTabWidth = 4.0 + fTextOffset;
|
|
|
|
if (!(_flags & B_NOT_CLOSABLE))
|
|
|
|
fMinTabWidth += offset + size;
|
|
|
|
if (!(_flags & B_NOT_ZOOMABLE))
|
|
|
|
fMinTabWidth += offset + size;
|
|
|
|
|
|
|
|
// fMaxTabWidth contains fMinWidth + the width required for the title
|
2005-06-08 18:35:25 +04:00
|
|
|
fMaxTabWidth = _driver ? _driver->StringWidth(GetTitle(), strlen(GetTitle()),
|
|
|
|
&_drawdata) : 0.0;
|
2005-06-03 23:50:30 +04:00
|
|
|
if (fMaxTabWidth > 0.0)
|
|
|
|
fMaxTabWidth += fTextOffset;
|
|
|
|
fMaxTabWidth += fMinTabWidth;
|
|
|
|
|
|
|
|
float tabWidth = _frame.Width();
|
|
|
|
if (tabWidth < fMinTabWidth)
|
|
|
|
tabWidth = fMinTabWidth;
|
|
|
|
if (tabWidth > fMaxTabWidth)
|
|
|
|
tabWidth = fMaxTabWidth;
|
|
|
|
|
|
|
|
// layout buttons and truncate text
|
|
|
|
_tabrect.right = _tabrect.left + tabWidth;
|
|
|
|
_LayoutTabItems(_tabrect);
|
|
|
|
} else {
|
|
|
|
// no tab
|
|
|
|
fMinTabWidth = 0.0;
|
|
|
|
fMaxTabWidth = 0.0;
|
|
|
|
_tabrect.Set(0.0, 0.0, -1.0, -1.0);
|
|
|
|
_closerect.Set(0.0, 0.0, -1.0, -1.0);
|
|
|
|
_zoomrect.Set(0.0, 0.0, -1.0, -1.0);
|
2003-08-31 21:38:34 +04:00
|
|
|
}
|
|
|
|
|
2003-09-07 01:09:11 +04:00
|
|
|
// calculate left/top/right/bottom borders
|
2005-06-03 23:50:30 +04:00
|
|
|
if (fBorderWidth > 0) {
|
2005-06-08 18:35:25 +04:00
|
|
|
fLeftBorder.Set(_frame.left - fBorderWidth, _frame.top,
|
|
|
|
_frame.left - 1, _frame.bottom);
|
2003-08-31 21:38:34 +04:00
|
|
|
|
2005-06-08 18:35:25 +04:00
|
|
|
fRightBorder.Set(_frame.right + 1, _frame.top ,
|
|
|
|
_frame.right + fBorderWidth, _frame.bottom);
|
2003-08-31 21:38:34 +04:00
|
|
|
|
2005-06-08 18:35:25 +04:00
|
|
|
fTopBorder.Set(_frame.left - fBorderWidth, _frame.top - fBorderWidth,
|
|
|
|
_frame.right + fBorderWidth, _frame.top - 1);
|
2003-08-31 21:38:34 +04:00
|
|
|
|
2005-06-08 18:35:25 +04:00
|
|
|
fBottomBorder.Set(_frame.left - fBorderWidth, _frame.bottom + 1,
|
|
|
|
_frame.right + fBorderWidth, _frame.bottom + fBorderWidth);
|
2005-06-03 23:50:30 +04:00
|
|
|
} else {
|
|
|
|
// no border ... (?) useful when displaying windows that are just images
|
|
|
|
fLeftBorder.Set(0.0, 0.0, -1.0, -1.0);
|
|
|
|
fRightBorder.Set(0.0, 0.0, -1.0, -1.0);
|
|
|
|
fTopBorder.Set(0.0, 0.0, -1.0, -1.0);
|
|
|
|
fBottomBorder.Set(0.0, 0.0, -1.0, -1.0);
|
2003-08-31 21:38:34 +04:00
|
|
|
}
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// calculate resize rect
|
|
|
|
_resizerect.Set(fBottomBorder.right - 18.0, fBottomBorder.bottom - 18.0,
|
|
|
|
fBottomBorder.right - 3, fBottomBorder.bottom - 3);
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// _DrawFrame
|
|
|
|
void
|
|
|
|
DefaultDecorator::_DrawFrame(BRect invalid)
|
2003-02-13 05:13:55 +03:00
|
|
|
{
|
2005-06-03 23:50:30 +04:00
|
|
|
STRACE(("_DrawFrame(%f,%f,%f,%f)\n", invalid.left, invalid.top,
|
|
|
|
invalid.right, invalid.bottom));
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
#ifdef USE_VIEW_FILL_HACK
|
|
|
|
_drawdata.SetHighColor(RGBColor(192, 192, 192 ));
|
|
|
|
_driver->FillRect(_frame, _drawdata.HighColor());
|
|
|
|
#endif
|
2004-05-16 23:15:36 +04:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
if (_look == B_NO_BORDER_WINDOW_LOOK)
|
|
|
|
return;
|
2004-05-16 23:15:36 +04:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
if (fBorderWidth <= 0)
|
|
|
|
return;
|
2004-05-16 23:15:36 +04:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// Draw the border frame
|
|
|
|
BRect r = BRect(fTopBorder.LeftTop(), fBottomBorder.RightBottom());
|
|
|
|
switch (_look) {
|
|
|
|
case B_TITLED_WINDOW_LOOK:
|
|
|
|
case B_DOCUMENT_WINDOW_LOOK:
|
|
|
|
case B_MODAL_WINDOW_LOOK: {
|
|
|
|
//top
|
|
|
|
for (int8 i = 0; i < 5; i++) {
|
|
|
|
_driver->StrokeLine(BPoint(r.left + i, r.top + i),
|
|
|
|
BPoint(r.right - i, r.top + i),
|
|
|
|
fFrameColors[i]);
|
|
|
|
}
|
|
|
|
//left
|
|
|
|
for (int8 i = 0; i < 5; i++) {
|
|
|
|
_driver->StrokeLine(BPoint(r.left + i, r.top + i),
|
|
|
|
BPoint(r.left + i, r.bottom - i),
|
|
|
|
fFrameColors[i]);
|
|
|
|
}
|
|
|
|
//bottom
|
|
|
|
for (int8 i = 0; i < 5; i++) {
|
|
|
|
_driver->StrokeLine(BPoint(r.left + i, r.bottom - i),
|
|
|
|
BPoint(r.right - i, r.bottom - i),
|
|
|
|
fFrameColors[(4 - i) == 4 ? 5 : (4 - i)]);
|
|
|
|
}
|
|
|
|
//right
|
|
|
|
for (int8 i = 0; i < 5; i++) {
|
|
|
|
_driver->StrokeLine(BPoint(r.right - i, r.top + i),
|
|
|
|
BPoint(r.right - i, r.bottom - i),
|
|
|
|
fFrameColors[(4 - i) == 4 ? 5 : (4 - i)]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case B_FLOATING_WINDOW_LOOK: {
|
|
|
|
//top
|
|
|
|
for (int8 i = 0; i < 3; i++) {
|
|
|
|
_driver->StrokeLine(BPoint(r.left + i, r.top + i),
|
|
|
|
BPoint(r.right - i, r.top + i),
|
|
|
|
fFrameColors[i * 2]);
|
|
|
|
}
|
|
|
|
//left
|
|
|
|
for (int8 i = 0; i < 3; i++) {
|
|
|
|
_driver->StrokeLine(BPoint(r.left + i, r.top + i),
|
|
|
|
BPoint(r.left + i, r.bottom - i),
|
|
|
|
fFrameColors[i * 2]);
|
|
|
|
}
|
|
|
|
//bottom
|
|
|
|
for (int8 i = 0; i < 3; i++) {
|
|
|
|
_driver->StrokeLine(BPoint(r.left + i, r.bottom - i),
|
|
|
|
BPoint(r.right - i, r.bottom - i),
|
|
|
|
fFrameColors[(2 - i) == 2 ? 5 : (2 - i) * 2]);
|
|
|
|
}
|
|
|
|
//right
|
|
|
|
for (int8 i = 0; i < 3; i++) {
|
|
|
|
_driver->StrokeLine(BPoint(r.right - i, r.top + i),
|
|
|
|
BPoint(r.right - i, r.bottom - i),
|
|
|
|
fFrameColors[(2 - i) == 2 ? 5 : (2 - i) * 2]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case B_BORDERED_WINDOW_LOOK: {
|
|
|
|
_driver->StrokeRect(r, fFrameColors[0]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
// don't draw a border frame
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Draw the resize thumb if we're supposed to
|
|
|
|
if (!(_flags & B_NOT_RESIZABLE)) {
|
|
|
|
|
|
|
|
r = _resizerect;
|
|
|
|
|
|
|
|
switch (_look){
|
|
|
|
case B_DOCUMENT_WINDOW_LOOK: {
|
|
|
|
|
|
|
|
// Explicitly locking the driver is normally unnecessary. However, we need to do
|
|
|
|
// this because we are rapidly drawing a series of calls which would not necessarily
|
|
|
|
// draw correctly if we didn't do so.
|
|
|
|
float x = r.right;
|
|
|
|
float y = r.bottom;
|
|
|
|
_driver->Lock();
|
|
|
|
_driver->FillRect(BRect(x-13, y-13, x, y), fFrameColors[2]);
|
|
|
|
_driver->StrokeLine(BPoint(x-15, y-15), BPoint(x-15, y-2), fFrameColors[0]);
|
|
|
|
_driver->StrokeLine(BPoint(x-14, y-14), BPoint(x-14, y-1), fFrameColors[1]);
|
|
|
|
_driver->StrokeLine(BPoint(x-15, y-15), BPoint(x-2, y-15), fFrameColors[0]);
|
|
|
|
_driver->StrokeLine(BPoint(x-14, y-14), BPoint(x-1, y-14), fFrameColors[1]);
|
|
|
|
|
|
|
|
for (int8 i = 1; i <= 4; i++) {
|
|
|
|
for (int8 j = 1; j <= i; j++) {
|
|
|
|
BPoint pt1(x-(3*j)+1, y-(3*(5-i))+1);
|
|
|
|
BPoint pt2(x-(3*j)+2, y-(3*(5-i))+2);
|
|
|
|
_driver->StrokePoint(pt1, fFrameColors[0]);
|
|
|
|
_driver->StrokePoint(pt2, fFrameColors[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_driver->Unlock();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case B_TITLED_WINDOW_LOOK:
|
|
|
|
case B_FLOATING_WINDOW_LOOK:
|
|
|
|
case B_MODAL_WINDOW_LOOK: {
|
|
|
|
_driver->StrokeLine(BPoint(fRightBorder.left, fBottomBorder.bottom - 22),
|
|
|
|
BPoint(fRightBorder.right - 1, fBottomBorder.bottom - 22),
|
|
|
|
fFrameColors[0]);
|
|
|
|
_driver->StrokeLine(BPoint(fRightBorder.right - 22, fBottomBorder.top),
|
|
|
|
BPoint(fRightBorder.right - 22, fBottomBorder.bottom - 1),
|
|
|
|
fFrameColors[0]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
default: {
|
|
|
|
// don't draw resize corner
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-05-16 23:15:36 +04:00
|
|
|
}
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// _DrawTab
|
|
|
|
void
|
|
|
|
DefaultDecorator::_DrawTab(BRect r)
|
2003-02-13 05:13:55 +03:00
|
|
|
{
|
2005-06-03 23:50:30 +04:00
|
|
|
STRACE(("_DrawTab(%f,%f,%f,%f)\n", r.left, r.top, r.right, r.bottom));
|
|
|
|
// If a window has a tab, this will draw it and any buttons which are
|
|
|
|
// in it.
|
|
|
|
if (!_tabrect.IsValid())
|
2003-09-17 21:14:22 +04:00
|
|
|
return;
|
2004-01-14 03:26:15 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// TODO: cache these
|
|
|
|
RGBColor tabColorLight = RGBColor(tint_color(fTabColor.GetColor32(), (B_LIGHTEN_2_TINT + B_LIGHTEN_MAX_TINT) / 2));
|
|
|
|
RGBColor tabColorShadow = RGBColor(tint_color(fTabColor.GetColor32(), B_DARKEN_2_TINT));
|
2004-03-28 19:03:34 +04:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// outer frame
|
|
|
|
_driver->StrokeLine(_tabrect.LeftTop(), _tabrect.LeftBottom(), fFrameColors[0]);
|
|
|
|
_driver->StrokeLine(_tabrect.LeftTop(), _tabrect.RightTop(), fFrameColors[0]);
|
|
|
|
_driver->StrokeLine(_tabrect.RightTop(),_tabrect.RightBottom(), fFrameColors[5]);
|
2004-03-28 19:03:34 +04:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// grey along the bottom (overwrites "white" from frame)
|
|
|
|
_driver->StrokeLine(BPoint(_tabrect.left + 2, _tabrect.bottom + 1),
|
|
|
|
BPoint(_tabrect.right - 2, _tabrect.bottom + 1),
|
|
|
|
fFrameColors[2]);
|
2004-01-14 03:26:15 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// bevel
|
|
|
|
_driver->StrokeLine(BPoint(_tabrect.left + 1, _tabrect.top + 1),
|
|
|
|
BPoint(_tabrect.left + 1, _tabrect.bottom),
|
|
|
|
tabColorLight);
|
|
|
|
_driver->StrokeLine(BPoint(_tabrect.left + 1, _tabrect.top + 1),
|
|
|
|
BPoint(_tabrect.right - 1, _tabrect.top + 1),
|
|
|
|
tabColorLight);
|
2004-03-28 19:03:34 +04:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
_driver->StrokeLine(BPoint(_tabrect.right - 1, _tabrect.top + 2),
|
|
|
|
BPoint(_tabrect.right - 1, _tabrect.bottom),
|
|
|
|
tabColorShadow);
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// fill
|
|
|
|
_driver->FillRect(BRect(_tabrect.left + 2, _tabrect.top + 2,
|
|
|
|
_tabrect.right - 2, _tabrect.bottom), fTabColor);
|
2003-09-04 01:43:09 +04:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
_DrawTitle(_tabrect);
|
2003-07-07 23:48:38 +04:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// Draw the buttons if we're supposed to
|
|
|
|
if (!(_flags & B_NOT_CLOSABLE))
|
|
|
|
_DrawClose(_closerect);
|
|
|
|
if (!(_flags & B_NOT_ZOOMABLE))
|
|
|
|
_DrawZoom(_zoomrect);
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// _DrawClose
|
|
|
|
void
|
|
|
|
DefaultDecorator::_DrawClose(BRect r)
|
2003-02-13 05:13:55 +03:00
|
|
|
{
|
2005-06-03 23:50:30 +04:00
|
|
|
STRACE(("_DrawClose(%f,%f,%f,%f)\n", r.left, r.top, r.right, r.bottom));
|
|
|
|
// Just like DrawZoom, but for a close button
|
|
|
|
_DrawBlendedRect( r, GetClose());
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// _DrawTitle
|
|
|
|
void
|
|
|
|
DefaultDecorator::_DrawTitle(BRect r)
|
2003-02-13 05:13:55 +03:00
|
|
|
{
|
2005-06-03 23:50:30 +04:00
|
|
|
STRACE(("_DrawTitle(%f,%f,%f,%f)\n", r.left, r.top, r.right, r.bottom));
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
_drawdata.SetHighColor(fTextColor);
|
|
|
|
_drawdata.SetLowColor(fTabColor);
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// figure out position of text
|
|
|
|
font_height fh;
|
|
|
|
_drawdata.Font().Height(&fh);
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
BPoint titlePos;
|
|
|
|
titlePos.x = _closerect.IsValid() ? _closerect.right + fTextOffset : _tabrect.left + fTextOffset;
|
|
|
|
titlePos.y = floorf(((_tabrect.top + 2.0) + _tabrect.bottom + fh.ascent + fh.descent) / 2.0 - fh.descent + 0.5);
|
|
|
|
|
|
|
|
_driver->DrawString(fTruncatedTitle.String(), fTruncatedTitleLength, titlePos, &_drawdata);
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// _DrawZoom
|
|
|
|
void
|
|
|
|
DefaultDecorator::_DrawZoom(BRect r)
|
2003-02-13 05:13:55 +03:00
|
|
|
{
|
2004-01-22 05:23:08 +03:00
|
|
|
STRACE(("_DrawZoom(%f,%f,%f,%f)\n", r.left, r.top, r.right, r.bottom));
|
2003-02-13 05:13:55 +03:00
|
|
|
// If this has been implemented, then the decorator has a Zoom button
|
|
|
|
// which should be drawn based on the state of the member zoomstate
|
2005-06-08 18:35:25 +04:00
|
|
|
|
|
|
|
BRect zr(r);
|
|
|
|
zr.left += 3.0;
|
|
|
|
zr.top += 3.0;
|
|
|
|
_DrawBlendedRect(zr, GetZoom());
|
|
|
|
|
|
|
|
zr = r;
|
|
|
|
zr.right -= 5.0;
|
|
|
|
zr.bottom -= 5.0;
|
|
|
|
_DrawBlendedRect(zr, GetZoom());
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// _SetFocus
|
|
|
|
void
|
|
|
|
DefaultDecorator::_SetFocus()
|
2003-02-13 05:13:55 +03:00
|
|
|
{
|
2005-06-03 23:50:30 +04:00
|
|
|
// SetFocus() performs necessary duties for color swapping and
|
|
|
|
// other things when a window is deactivated or activated.
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
if (GetFocus()) {
|
2005-06-15 21:20:17 +04:00
|
|
|
fButtonHighColor.SetColor(tint_color(_colors->window_tab,B_LIGHTEN_2_TINT));
|
|
|
|
fButtonLowColor.SetColor(tint_color(_colors->window_tab,B_DARKEN_1_TINT));
|
2005-06-03 23:50:30 +04:00
|
|
|
fTextColor = _colors->window_tab_text;
|
|
|
|
fTabColor = _colors->window_tab;
|
|
|
|
} else {
|
2005-06-15 21:20:17 +04:00
|
|
|
fButtonHighColor.SetColor(tint_color(_colors->inactive_window_tab,B_LIGHTEN_2_TINT));
|
|
|
|
fButtonLowColor.SetColor(tint_color(_colors->inactive_window_tab,B_DARKEN_1_TINT));
|
2005-06-03 23:50:30 +04:00
|
|
|
fTextColor = _colors->inactive_window_tab_text;
|
|
|
|
fTabColor = _colors->inactive_window_tab;
|
|
|
|
}
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// _SetColors
|
|
|
|
void
|
|
|
|
DefaultDecorator::_SetColors()
|
2003-07-07 17:09:42 +04:00
|
|
|
{
|
|
|
|
_SetFocus();
|
|
|
|
}
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// _DrawBlendedRect
|
|
|
|
void
|
|
|
|
DefaultDecorator::_DrawBlendedRect(BRect r, bool down)
|
2003-02-13 05:13:55 +03:00
|
|
|
{
|
|
|
|
// This bad boy is used to draw a rectangle with a gradient.
|
|
|
|
// Note that it is not part of the Decorator API - it's specific
|
2004-02-15 23:27:26 +03:00
|
|
|
// to just the BeDecorator. Called by DrawZoom and DrawClose
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2004-02-15 23:27:26 +03:00
|
|
|
// Actually just draws a blended square
|
2005-06-03 23:50:30 +04:00
|
|
|
int32 w = r.IntegerWidth();
|
|
|
|
int32 h = r.IntegerHeight();
|
2004-02-15 23:27:26 +03:00
|
|
|
|
|
|
|
RGBColor temprgbcol;
|
2004-01-27 03:38:14 +03:00
|
|
|
rgb_color halfcol, startcol, endcol;
|
2005-06-03 23:50:30 +04:00
|
|
|
float rstep, gstep, bstep;
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
int steps = (w < h) ? w : h;
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
if (down) {
|
|
|
|
startcol = fButtonLowColor.GetColor32();
|
|
|
|
endcol = fButtonHighColor.GetColor32();
|
|
|
|
} else {
|
|
|
|
startcol = fButtonHighColor.GetColor32();
|
|
|
|
endcol = fButtonLowColor.GetColor32();
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
halfcol = MakeBlendColor(startcol,endcol,0.5);
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
rstep = float(startcol.red - halfcol.red) / steps;
|
|
|
|
gstep = float(startcol.green - halfcol.green) / steps;
|
|
|
|
bstep = float(startcol.blue - halfcol.blue) / steps;
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
for (int32 i = 0; i <= steps; i++) {
|
|
|
|
temprgbcol.SetColor(uint8(startcol.red - (i * rstep)),
|
|
|
|
uint8(startcol.green - (i * gstep)),
|
|
|
|
uint8(startcol.blue - (i * bstep)));
|
2004-01-27 03:38:14 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
_driver->StrokeLine(BPoint(r.left, r.top + i),
|
|
|
|
BPoint(r.left + i, r.top), temprgbcol);
|
2003-02-13 05:13:55 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
temprgbcol.SetColor(uint8(halfcol.red - (i * rstep)),
|
|
|
|
uint8(halfcol.green - (i * gstep)),
|
|
|
|
uint8(halfcol.blue - (i * bstep)));
|
2004-01-27 03:38:14 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
_driver->StrokeLine(BPoint(r.left + steps, r.top + i),
|
|
|
|
BPoint(r.left + i, r.top + steps), temprgbcol);
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
2005-06-03 23:50:30 +04:00
|
|
|
_driver->StrokeRect(r, fFrameColors[3]);
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// _GetButtonSizeAndOffset
|
|
|
|
void
|
|
|
|
DefaultDecorator::_GetButtonSizeAndOffset(const BRect& tabRect, float* offset, float* size) const
|
2003-02-13 05:13:55 +03:00
|
|
|
{
|
2005-06-03 23:50:30 +04:00
|
|
|
*offset = _look == B_FLOATING_WINDOW_LOOK ? 4.0 : 5.0;
|
|
|
|
// "+ 2" so that the rects are centered within the solid area
|
|
|
|
// (without the 2 pixels for the top border)
|
|
|
|
*size = tabRect.Height() - 2.0 * *offset + 2.0;
|
|
|
|
}
|
2004-01-14 03:26:15 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// _LayoutTabItems
|
|
|
|
void
|
|
|
|
DefaultDecorator::_LayoutTabItems(const BRect& tabRect)
|
|
|
|
{
|
|
|
|
float offset;
|
|
|
|
float size;
|
|
|
|
_GetButtonSizeAndOffset(tabRect, &offset, &size);
|
2004-01-14 03:26:15 +03:00
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// calulate close rect based on the tab rectangle
|
2005-06-08 18:35:25 +04:00
|
|
|
if (GetFlags() & B_NOT_CLOSABLE) {
|
|
|
|
_closerect.Set(tabRect.left + offset, tabRect.top + offset,
|
|
|
|
tabRect.left + offset, tabRect.top + offset + size);
|
|
|
|
} else {
|
|
|
|
_closerect.Set(tabRect.left + offset, tabRect.top + offset,
|
|
|
|
tabRect.left + offset + size, tabRect.top + offset + size);
|
|
|
|
}
|
|
|
|
|
2005-06-03 23:50:30 +04:00
|
|
|
// calulate zoom rect based on the tab rectangle
|
2005-06-08 18:35:25 +04:00
|
|
|
if (GetFlags() & B_NOT_ZOOMABLE) {
|
|
|
|
_zoomrect.Set(tabRect.right, tabRect.top + offset,
|
|
|
|
tabRect.right, tabRect.top + offset + size);
|
|
|
|
} else {
|
|
|
|
_zoomrect.Set(tabRect.right - offset - size, tabRect.top + offset,
|
|
|
|
tabRect.right - offset, tabRect.top + offset + size);
|
|
|
|
}
|
2005-06-03 23:50:30 +04:00
|
|
|
|
|
|
|
// calculate room for title
|
2005-06-08 18:35:25 +04:00
|
|
|
// ToDo: the +2 is there because the title often appeared
|
|
|
|
// truncated for no apparent reason - OTOH the title does
|
|
|
|
// also not appear perfectly in the middle
|
|
|
|
float width = (_zoomrect.left - _closerect.right) - fTextOffset * 2 + 2;
|
2005-06-03 23:50:30 +04:00
|
|
|
fTruncatedTitle = GetTitle();
|
|
|
|
_drawdata.Font().TruncateString(&fTruncatedTitle, B_TRUNCATE_END, width);
|
2005-06-08 18:35:25 +04:00
|
|
|
fTruncatedTitleLength = fTruncatedTitle.Length();
|
2003-02-13 05:13:55 +03:00
|
|
|
}
|