2003-02-15 18:28:22 +03:00
|
|
|
//------------------------------------------------------------------------------
|
2005-02-04 00:31:42 +03:00
|
|
|
// Copyright (c) 2001-2005, 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: WinBorder.cpp
|
|
|
|
// Author: DarkWyrm <bpmagic@columbus.rr.com>
|
2005-02-04 00:31:42 +03:00
|
|
|
// Adi Oanca <adioanca@cotty.iren.ro>
|
2003-02-15 18:28:22 +03:00
|
|
|
// Description: Layer subclass which handles window management
|
|
|
|
//
|
|
|
|
//------------------------------------------------------------------------------
|
2003-02-14 04:53:53 +03:00
|
|
|
#include <Region.h>
|
|
|
|
#include <String.h>
|
|
|
|
#include <Locker.h>
|
|
|
|
#include <Debug.h>
|
2004-07-30 19:16:59 +04:00
|
|
|
#include "PortLink.h"
|
2003-02-14 04:53:53 +03:00
|
|
|
#include "View.h" // for mouse button defines
|
2005-02-07 03:45:59 +03:00
|
|
|
#include "MessagePrivate.h"
|
2003-02-14 04:53:53 +03:00
|
|
|
#include "ServerWindow.h"
|
|
|
|
#include "Decorator.h"
|
|
|
|
#include "DisplayDriver.h"
|
|
|
|
#include "Desktop.h"
|
|
|
|
#include "WinBorder.h"
|
2003-03-12 21:32:27 +03:00
|
|
|
#include "AppServer.h" // for new_decorator()
|
2003-09-09 02:09:10 +04:00
|
|
|
#include "TokenHandler.h"
|
2004-01-13 03:38:42 +03:00
|
|
|
#include "Globals.h"
|
|
|
|
#include "RootLayer.h"
|
|
|
|
#include "Workspace.h"
|
2003-02-14 04:53:53 +03:00
|
|
|
|
2003-09-07 01:09:11 +04:00
|
|
|
// Toggle general function call output
|
2004-06-18 15:50:17 +04:00
|
|
|
//#define DEBUG_WINBORDER
|
2003-09-07 01:09:11 +04:00
|
|
|
|
|
|
|
// toggle
|
2004-06-03 00:44:46 +04:00
|
|
|
//#define DEBUG_WINBORDER_MOUSE
|
|
|
|
//#define DEBUG_WINBORDER_CLICK
|
2003-03-23 23:52:37 +03:00
|
|
|
|
|
|
|
#ifdef DEBUG_WINBORDER
|
2003-09-09 02:09:10 +04:00
|
|
|
# include <stdio.h>
|
|
|
|
# define STRACE(x) printf x
|
|
|
|
#else
|
|
|
|
# define STRACE(x) ;
|
2003-03-23 23:52:37 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG_WINBORDER_MOUSE
|
2003-09-09 02:09:10 +04:00
|
|
|
# include <stdio.h>
|
|
|
|
# define STRACE_MOUSE(x) printf x
|
|
|
|
#else
|
|
|
|
# define STRACE_MOUSE(x) ;
|
2003-03-23 23:52:37 +03:00
|
|
|
#endif
|
|
|
|
|
2003-04-05 05:51:35 +04:00
|
|
|
#ifdef DEBUG_WINBORDER_CLICK
|
2003-09-09 02:09:10 +04:00
|
|
|
# include <stdio.h>
|
|
|
|
# define STRACE_CLICK(x) printf x
|
|
|
|
#else
|
|
|
|
# define STRACE_CLICK(x) ;
|
2003-04-05 05:51:35 +04:00
|
|
|
#endif
|
|
|
|
|
2003-09-09 02:09:10 +04:00
|
|
|
//! TokenHandler object used to provide IDs for all WinBorder objects
|
2004-06-11 06:46:48 +04:00
|
|
|
TokenHandler border_token_handler;
|
|
|
|
|
|
|
|
bool gMouseDown = false;
|
2003-02-14 04:53:53 +03:00
|
|
|
|
2004-04-05 00:30:20 +04:00
|
|
|
|
2005-04-16 17:30:49 +04:00
|
|
|
WinBorder::WinBorder( const BRect &r,
|
|
|
|
const char *name,
|
|
|
|
const uint32 wlook,
|
|
|
|
const uint32 wfeel,
|
|
|
|
const uint32 wflags,
|
|
|
|
const uint32 wwksindex,
|
|
|
|
ServerWindow *win,
|
|
|
|
DisplayDriver *driver)
|
|
|
|
: Layer(r, name, B_NULL_TOKEN, B_FOLLOW_NONE, 0UL, driver),
|
|
|
|
fLook(wlook),
|
2005-04-21 22:57:34 +04:00
|
|
|
fLevel(-100),
|
2005-04-16 17:30:49 +04:00
|
|
|
fWindowFlags(wflags),
|
|
|
|
fWorkspaces(wwksindex)
|
2003-02-14 04:53:53 +03:00
|
|
|
{
|
2004-02-24 14:56:03 +03:00
|
|
|
// unlike BViews, windows start off as hidden
|
2004-06-11 22:21:57 +04:00
|
|
|
fHidden = true;
|
2005-04-06 00:03:07 +04:00
|
|
|
fInUpdate = false;
|
2005-04-07 00:52:58 +04:00
|
|
|
fRequestSent = false;
|
2004-06-11 22:21:57 +04:00
|
|
|
fServerWin = win;
|
2004-07-05 19:23:29 +04:00
|
|
|
fClassID = AS_WINBORDER_CLASS;
|
2005-04-07 00:52:58 +04:00
|
|
|
cnt = 0; // for debugging
|
2004-02-24 14:56:03 +03:00
|
|
|
fMouseButtons = 0;
|
|
|
|
fKeyModifiers = 0;
|
|
|
|
fDecorator = NULL;
|
2004-06-21 00:02:32 +04:00
|
|
|
fTopLayer = NULL;
|
2004-06-16 10:40:26 +04:00
|
|
|
fAdFlags = fAdFlags | B_LAYER_CHILDREN_DEPENDANT;
|
2004-06-18 19:24:36 +04:00
|
|
|
fFlags = B_WILL_DRAW | B_FULL_UPDATE_ON_RESIZE;
|
2005-03-21 23:29:24 +03:00
|
|
|
fEventMask = B_POINTER_EVENTS;
|
2003-11-14 03:15:29 +03:00
|
|
|
|
2004-04-05 00:30:20 +04:00
|
|
|
fIsClosing = false;
|
|
|
|
fIsMinimizing = false;
|
|
|
|
fIsZooming = false;
|
|
|
|
|
2003-11-15 03:29:14 +03:00
|
|
|
fLastMousePosition.Set(-1,-1);
|
2005-04-21 22:57:34 +04:00
|
|
|
QuietlySetFeel(wfeel);
|
2003-08-31 21:38:34 +04:00
|
|
|
|
2005-04-16 17:30:49 +04:00
|
|
|
if (fFeel != B_NO_BORDER_WINDOW_LOOK)
|
|
|
|
fDecorator = new_decorator(r, name, fLook, fFeel, fWindowFlags, fDriver);
|
2004-03-28 18:58:39 +04:00
|
|
|
|
2005-02-28 23:23:51 +03:00
|
|
|
RebuildFullRegion();
|
|
|
|
|
2005-05-28 17:43:13 +04:00
|
|
|
gDesktop->AddWinBorder(this);
|
2005-02-28 23:23:51 +03:00
|
|
|
|
2004-01-21 05:58:39 +03:00
|
|
|
STRACE(("WinBorder %s:\n",GetName()));
|
|
|
|
STRACE(("\tFrame: (%.1f,%.1f,%.1f,%.1f)\n",r.left,r.top,r.right,r.bottom));
|
|
|
|
STRACE(("\tWindow %s\n",win?win->Title():"NULL"));
|
2003-02-14 04:53:53 +03:00
|
|
|
}
|
2004-06-11 06:46:48 +04:00
|
|
|
|
2003-02-14 04:53:53 +03:00
|
|
|
WinBorder::~WinBorder(void)
|
|
|
|
{
|
2004-06-18 15:50:17 +04:00
|
|
|
STRACE(("WinBorder(%s)::~WinBorder()\n",GetName()));
|
2005-02-28 23:23:51 +03:00
|
|
|
|
2005-05-28 17:43:13 +04:00
|
|
|
gDesktop->RemoveWinBorder(this);
|
2005-02-28 23:23:51 +03:00
|
|
|
|
2004-06-21 00:02:32 +04:00
|
|
|
if (fTopLayer){
|
|
|
|
delete fTopLayer;
|
|
|
|
fTopLayer = NULL;
|
|
|
|
}
|
|
|
|
|
2004-06-11 06:46:48 +04:00
|
|
|
if (fDecorator)
|
|
|
|
{
|
2004-02-24 14:56:03 +03:00
|
|
|
delete fDecorator;
|
2004-06-11 06:46:48 +04:00
|
|
|
fDecorator = NULL;
|
2003-11-14 03:15:29 +03:00
|
|
|
}
|
2003-02-14 04:53:53 +03:00
|
|
|
}
|
2004-06-11 06:46:48 +04:00
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
//! Rebuilds the WinBorder's "fully-visible" region based on info from the decorator
|
2004-06-11 06:46:48 +04:00
|
|
|
void WinBorder::RebuildFullRegion(void)
|
|
|
|
{
|
2004-06-18 15:50:17 +04:00
|
|
|
STRACE(("WinBorder(%s)::RebuildFullRegion()\n",GetName()));
|
2004-03-28 18:58:39 +04:00
|
|
|
|
2004-06-11 22:21:57 +04:00
|
|
|
fFull.MakeEmpty();
|
2004-03-28 18:58:39 +04:00
|
|
|
|
2004-06-16 10:40:26 +04:00
|
|
|
// Winborder holds Decorator's full regions. if any...
|
2004-06-11 06:46:48 +04:00
|
|
|
if (fDecorator)
|
2004-06-16 10:40:26 +04:00
|
|
|
fDecorator->GetFootprint(&fFull);
|
2004-03-28 18:58:39 +04:00
|
|
|
}
|
2004-06-11 06:46:48 +04:00
|
|
|
|
2005-03-11 00:34:04 +03:00
|
|
|
click_type WinBorder::TellWhat(PointerEvent& evt) const
|
|
|
|
{
|
|
|
|
if (fTopLayer->fFullVisible.Contains(evt.where))
|
|
|
|
return DEC_NONE;
|
|
|
|
else if (fDecorator)
|
|
|
|
return fDecorator->Clicked(evt.where, evt.buttons, evt.modifiers);
|
|
|
|
else
|
|
|
|
return DEC_NONE;
|
|
|
|
}
|
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
/*!
|
|
|
|
\brief Handles B_MOUSE_DOWN events and takes appropriate actions
|
|
|
|
\param evt PointerEvent object containing the info from the last B_MOUSE_DOWN message
|
|
|
|
\param sendMessage flag to send a B_MOUSE_DOWN message to the client
|
|
|
|
|
|
|
|
This function searches to see if the B_MOUSE_DOWN message is being sent to the window tab
|
|
|
|
or frame. If it is not, the message is passed on to the appropriate view in the client
|
|
|
|
BWindow. If the WinBorder is the target, then the proper action flag is set.
|
|
|
|
*/
|
2005-03-21 23:29:24 +03:00
|
|
|
void WinBorder::MouseDown(click_type action)
|
2003-02-14 04:53:53 +03:00
|
|
|
{
|
2005-03-17 20:41:00 +03:00
|
|
|
// find out where user clicked in Decorator
|
|
|
|
switch(action)
|
2004-06-11 06:46:48 +04:00
|
|
|
{
|
2005-03-17 20:41:00 +03:00
|
|
|
case DEC_CLOSE:
|
2004-06-11 06:46:48 +04:00
|
|
|
{
|
2005-03-17 20:41:00 +03:00
|
|
|
fIsClosing = true;
|
|
|
|
fDecorator->SetClose(true);
|
|
|
|
fDecorator->DrawClose();
|
|
|
|
STRACE_CLICK(("===> DEC_CLOSE\n"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DEC_ZOOM:
|
|
|
|
{
|
|
|
|
fIsZooming = true;
|
|
|
|
fDecorator->SetZoom(true);
|
|
|
|
fDecorator->DrawZoom();
|
|
|
|
STRACE_CLICK(("===> DEC_ZOOM\n"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case DEC_MINIMIZE:
|
|
|
|
{
|
|
|
|
fIsMinimizing = true;
|
|
|
|
fDecorator->SetMinimize(true);
|
|
|
|
fDecorator->DrawMinimize();
|
|
|
|
STRACE_CLICK(("===> DEC_MINIMIZE\n"));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
{
|
2005-03-21 23:29:24 +03:00
|
|
|
debugger("WinBorder::MouseDown - default case - not allowed!\n");
|
2005-03-17 20:41:00 +03:00
|
|
|
break;
|
2004-04-05 00:30:20 +04:00
|
|
|
}
|
|
|
|
}
|
2003-02-14 04:53:53 +03:00
|
|
|
}
|
2004-06-11 06:46:48 +04:00
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
/*!
|
|
|
|
\brief Handles B_MOUSE_MOVED events and takes appropriate actions
|
|
|
|
\param evt PointerEvent object containing the info from the last B_MOUSE_MOVED message
|
|
|
|
|
|
|
|
This function doesn't do much except test continue any move/resize operations in progress
|
|
|
|
or check to see if the user clicked on a tab button (close, zoom, etc.) and then moused
|
|
|
|
away to prevent the operation from occurring
|
|
|
|
*/
|
2005-03-21 23:29:24 +03:00
|
|
|
void WinBorder::MouseMoved(click_type action)
|
2003-02-14 04:53:53 +03:00
|
|
|
{
|
2005-03-21 23:29:24 +03:00
|
|
|
if (fIsZooming && action!=DEC_ZOOM)
|
2004-06-11 06:46:48 +04:00
|
|
|
{
|
2005-03-11 00:34:04 +03:00
|
|
|
fDecorator->SetZoom(false);
|
|
|
|
fDecorator->DrawZoom();
|
2004-04-05 00:30:20 +04:00
|
|
|
}
|
2004-06-11 06:46:48 +04:00
|
|
|
else
|
2005-03-21 23:29:24 +03:00
|
|
|
if (fIsClosing && action!=DEC_CLOSE)
|
2004-06-11 06:46:48 +04:00
|
|
|
{
|
2005-03-11 00:34:04 +03:00
|
|
|
fDecorator->SetClose(false);
|
|
|
|
fDecorator->DrawClose();
|
2004-04-05 00:30:20 +04:00
|
|
|
}
|
2004-06-11 06:46:48 +04:00
|
|
|
else
|
2005-03-21 23:29:24 +03:00
|
|
|
if(fIsMinimizing && action!=DEC_MINIMIZE)
|
2004-06-11 06:46:48 +04:00
|
|
|
{
|
2005-03-11 00:34:04 +03:00
|
|
|
fDecorator->SetMinimize(false);
|
|
|
|
fDecorator->DrawMinimize();
|
2004-04-05 00:30:20 +04:00
|
|
|
}
|
2003-02-14 04:53:53 +03:00
|
|
|
}
|
2004-06-11 06:46:48 +04:00
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
/*!
|
|
|
|
\brief Handles B_MOUSE_UP events and takes appropriate actions
|
|
|
|
\param evt PointerEvent object containing the info from the last B_MOUSE_UP message
|
|
|
|
|
|
|
|
This function resets any state objects (is_resizing flag and such) and if resetting a
|
|
|
|
button click flag, takes the appropriate action (i.e. clearing the close button flag also
|
|
|
|
takes steps to close the window).
|
|
|
|
*/
|
2005-03-21 23:29:24 +03:00
|
|
|
void WinBorder::MouseUp(click_type action)
|
2003-02-14 04:53:53 +03:00
|
|
|
{
|
2004-06-11 06:46:48 +04:00
|
|
|
if (fIsZooming)
|
|
|
|
{
|
2004-04-05 00:30:20 +04:00
|
|
|
fIsZooming = false;
|
2004-06-11 06:46:48 +04:00
|
|
|
fDecorator->SetZoom(false);
|
|
|
|
fDecorator->DrawZoom();
|
2004-11-24 23:07:41 +03:00
|
|
|
if(action==DEC_ZOOM)
|
|
|
|
Window()->Zoom();
|
2004-04-05 00:30:20 +04:00
|
|
|
return;
|
|
|
|
}
|
2004-11-24 23:07:41 +03:00
|
|
|
if(fIsClosing)
|
2004-06-11 06:46:48 +04:00
|
|
|
{
|
2004-04-05 00:30:20 +04:00
|
|
|
fIsClosing = false;
|
2004-06-11 06:46:48 +04:00
|
|
|
fDecorator->SetClose(false);
|
|
|
|
fDecorator->DrawClose();
|
2004-11-24 23:07:41 +03:00
|
|
|
if(action==DEC_CLOSE)
|
|
|
|
Window()->Quit();
|
2004-06-11 06:46:48 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if(fIsMinimizing)
|
|
|
|
{
|
|
|
|
fIsMinimizing = false;
|
|
|
|
fDecorator->SetMinimize(false);
|
|
|
|
fDecorator->DrawMinimize();
|
2004-11-24 23:07:41 +03:00
|
|
|
if(action==DEC_MINIMIZE)
|
|
|
|
Window()->Minimize(true);
|
2004-04-05 00:30:20 +04:00
|
|
|
return;
|
|
|
|
}
|
2005-01-20 21:39:08 +03:00
|
|
|
}
|
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
//! Sets the decorator focus to active or inactive colors
|
2004-02-24 14:56:03 +03:00
|
|
|
void WinBorder::HighlightDecorator(const bool &active)
|
2003-07-24 23:38:24 +04:00
|
|
|
{
|
2004-06-26 06:15:48 +04:00
|
|
|
STRACE(("Decorator->Highlight\n"));
|
2004-02-24 14:56:03 +03:00
|
|
|
fDecorator->SetFocus(active);
|
2003-07-24 23:38:24 +04:00
|
|
|
}
|
2004-06-11 06:46:48 +04:00
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
//! redraws a certain section of the window border
|
2003-11-14 03:15:29 +03:00
|
|
|
void WinBorder::Draw(const BRect &r)
|
2003-02-14 04:53:53 +03:00
|
|
|
{
|
2004-06-26 06:15:48 +04:00
|
|
|
#ifdef DEBUG_WINBORDER
|
2004-08-03 19:17:44 +04:00
|
|
|
printf("WinBorder(%s)::Draw() : ", GetName());
|
2004-06-26 06:15:48 +04:00
|
|
|
r.PrintToStream();
|
|
|
|
#endif
|
|
|
|
|
2004-06-16 10:40:26 +04:00
|
|
|
// if we have a visible region, it is decorator's one.
|
2004-06-11 06:46:48 +04:00
|
|
|
if(fDecorator)
|
2005-02-28 23:23:51 +03:00
|
|
|
{
|
|
|
|
WinBorder *wb = GetRootLayer()->FocusWinBorder();
|
|
|
|
if (wb && wb == this)
|
|
|
|
fDecorator->SetFocus(true);
|
|
|
|
else
|
|
|
|
fDecorator->SetFocus(false);
|
2005-04-06 00:03:07 +04:00
|
|
|
fDecorator->Draw(r);
|
2005-02-28 23:23:51 +03:00
|
|
|
}
|
2003-02-14 04:53:53 +03:00
|
|
|
}
|
2004-06-11 06:46:48 +04:00
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
//! Moves the winborder with redraw
|
2003-02-14 04:53:53 +03:00
|
|
|
void WinBorder::MoveBy(float x, float y)
|
|
|
|
{
|
2005-04-28 16:31:25 +04:00
|
|
|
STRACE(("WinBorder(%s)::MoveBy(%.1f, %.1f) fDecorator: %p\n", GetName(), x, y, fDecorator));
|
2004-06-11 06:46:48 +04:00
|
|
|
if(fDecorator)
|
2004-03-28 18:58:39 +04:00
|
|
|
fDecorator->MoveBy(x,y);
|
2004-06-19 17:04:50 +04:00
|
|
|
|
2005-04-29 03:56:40 +04:00
|
|
|
// NOTE: I moved this here from Layer::move_layer()
|
|
|
|
// Should this have any bad consequences I'm not aware of?
|
|
|
|
zUpdateReg.OffsetBy(x, y);
|
|
|
|
yUpdateReg.OffsetBy(x, y);
|
|
|
|
fUpdateReg.OffsetBy(x, y);
|
|
|
|
|
|
|
|
if (IsHidden()) {
|
|
|
|
// TODO: This is a work around for a design issue:
|
|
|
|
// The actual movement of a layer is done during
|
|
|
|
// the region rebuild. The mechanism is somewhat
|
|
|
|
// complicated and scheduled for refractoring...
|
|
|
|
// The problem here for hidden layers is that
|
|
|
|
// they seem *not* to be part of the layer tree.
|
|
|
|
// I don't think this is wrong as such, but of
|
|
|
|
// course the rebuilding of regions does not take
|
|
|
|
// place then. I don't understand yet the consequences
|
|
|
|
// for normal views, but this here fixes at least
|
|
|
|
// BWindows being MoveTo()ed before they are Show()n.
|
|
|
|
// In Layer::move_to, StartRebuildRegions() is called
|
|
|
|
// on fParent. But the rest of the this layers tree
|
|
|
|
// has not been added to fParent apperantly. So now
|
|
|
|
// you ask why fParent is even valid? Me too.
|
|
|
|
fFrame.OffsetBy(x, y);
|
|
|
|
fFull.OffsetBy(x, y);
|
|
|
|
fTopLayer->move_layer(x, y);
|
|
|
|
// ...and here we get really hacky...
|
|
|
|
fTopLayer->fFrame.OffsetTo(0.0, 0.0);
|
|
|
|
} else {
|
|
|
|
move_layer(x, y);
|
|
|
|
}
|
2003-02-14 04:53:53 +03:00
|
|
|
}
|
2004-06-11 06:46:48 +04:00
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
//! Resizes the winborder with redraw
|
2003-02-14 04:53:53 +03:00
|
|
|
void WinBorder::ResizeBy(float x, float y)
|
|
|
|
{
|
2004-09-09 04:54:21 +04:00
|
|
|
// TODO: account for size limits
|
2005-04-28 16:31:25 +04:00
|
|
|
// NOTE: size limits are also regarded in BWindow::ResizeXX()
|
2004-09-09 04:54:21 +04:00
|
|
|
|
2004-06-11 06:46:48 +04:00
|
|
|
STRACE(("WinBorder(%s)::ResizeBy()\n", GetName()));
|
|
|
|
if(fDecorator)
|
2004-03-28 18:58:39 +04:00
|
|
|
fDecorator->ResizeBy(x,y);
|
2004-06-19 17:04:50 +04:00
|
|
|
|
2005-01-23 02:25:41 +03:00
|
|
|
resize_layer(x,y);
|
2003-02-14 04:53:53 +03:00
|
|
|
}
|
2004-06-11 06:46:48 +04:00
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
//! Sets the minimum and maximum sizes of the window
|
2004-08-08 00:30:58 +04:00
|
|
|
void WinBorder::SetSizeLimits(float minwidth, float maxwidth, float minheight, float maxheight)
|
|
|
|
{
|
|
|
|
if(minwidth<0)
|
|
|
|
minwidth=0;
|
|
|
|
|
|
|
|
if(minheight<0)
|
|
|
|
minheight=0;
|
|
|
|
|
|
|
|
if(maxwidth<=minwidth)
|
|
|
|
maxwidth=minwidth+1;
|
|
|
|
|
|
|
|
if(maxheight<=minheight)
|
|
|
|
maxheight=minheight+1;
|
|
|
|
|
|
|
|
fMinWidth=minwidth;
|
|
|
|
fMaxWidth=maxwidth;
|
|
|
|
fMinHeight=minheight;
|
|
|
|
fMaxHeight=maxheight;
|
|
|
|
}
|
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
//! Returns true if the point is in the WinBorder's screen area
|
2004-08-03 19:17:44 +04:00
|
|
|
bool WinBorder::HasPoint(const BPoint& pt) const
|
2004-06-11 06:46:48 +04:00
|
|
|
{
|
2004-06-11 22:21:57 +04:00
|
|
|
return fFullVisible.Contains(pt);
|
2004-01-13 03:38:42 +03:00
|
|
|
}
|
2004-06-11 06:46:48 +04:00
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
// Unimplemented. Hook function for handling when system GUI colors change
|
2003-02-24 18:47:06 +03:00
|
|
|
void WinBorder::UpdateColors(void)
|
|
|
|
{
|
2004-06-11 06:46:48 +04:00
|
|
|
STRACE(("WinBorder %s: UpdateColors unimplemented\n",GetName()));
|
2003-02-24 18:47:06 +03:00
|
|
|
}
|
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
// Unimplemented. Hook function for handling when the system decorator changes
|
2003-02-24 18:47:06 +03:00
|
|
|
void WinBorder::UpdateDecorator(void)
|
|
|
|
{
|
2004-06-11 06:46:48 +04:00
|
|
|
STRACE(("WinBorder %s: UpdateDecorator unimplemented\n",GetName()));
|
2003-02-24 18:47:06 +03:00
|
|
|
}
|
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
// Unimplemented. Hook function for handling when a system font changes
|
2003-02-24 18:47:06 +03:00
|
|
|
void WinBorder::UpdateFont(void)
|
|
|
|
{
|
2004-06-11 06:46:48 +04:00
|
|
|
STRACE(("WinBorder %s: UpdateFont unimplemented\n",GetName()));
|
2003-02-24 18:47:06 +03:00
|
|
|
}
|
|
|
|
|
2004-09-09 04:54:21 +04:00
|
|
|
// Unimplemented. Hook function for handling when the screen resolution changes
|
2003-02-24 18:47:06 +03:00
|
|
|
void WinBorder::UpdateScreen(void)
|
|
|
|
{
|
2004-06-11 06:46:48 +04:00
|
|
|
STRACE(("WinBorder %s: UpdateScreen unimplemented\n",GetName()));
|
2003-02-24 18:47:06 +03:00
|
|
|
}
|
2005-02-28 23:23:51 +03:00
|
|
|
|
2005-04-21 22:57:34 +04:00
|
|
|
void WinBorder::QuietlySetFeel(int32 feel)
|
2005-02-28 23:23:51 +03:00
|
|
|
{
|
2005-04-21 22:57:34 +04:00
|
|
|
fFeel = feel;
|
|
|
|
|
2005-04-16 17:30:49 +04:00
|
|
|
switch(fFeel)
|
2005-02-28 23:23:51 +03:00
|
|
|
{
|
|
|
|
case B_FLOATING_SUBSET_WINDOW_FEEL:
|
|
|
|
case B_FLOATING_APP_WINDOW_FEEL:
|
|
|
|
fLevel = B_FLOATING_APP;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case B_MODAL_SUBSET_WINDOW_FEEL:
|
|
|
|
case B_MODAL_APP_WINDOW_FEEL:
|
|
|
|
fLevel = B_MODAL_APP;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case B_NORMAL_WINDOW_FEEL:
|
|
|
|
fLevel = B_NORMAL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case B_FLOATING_ALL_WINDOW_FEEL:
|
|
|
|
fLevel = B_FLOATING_ALL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case B_MODAL_ALL_WINDOW_FEEL:
|
|
|
|
fLevel = B_MODAL_ALL;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case B_SYSTEM_LAST:
|
|
|
|
fLevel = B_SYSTEM_LAST;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case B_SYSTEM_FIRST:
|
|
|
|
fLevel = B_SYSTEM_FIRST;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fLevel = B_NORMAL;
|
|
|
|
}
|
2005-04-21 22:57:34 +04:00
|
|
|
|
|
|
|
// floating and modal windows must appear in every workspace where
|
|
|
|
// their main window is present. Thus their wksIndex will be set to
|
|
|
|
// '0x0' and they will be made visible when needed.
|
|
|
|
switch (fFeel)
|
|
|
|
{
|
|
|
|
case B_MODAL_APP_WINDOW_FEEL:
|
2005-04-23 14:05:33 +04:00
|
|
|
break;
|
2005-04-21 22:57:34 +04:00
|
|
|
case B_MODAL_SUBSET_WINDOW_FEEL:
|
|
|
|
case B_FLOATING_APP_WINDOW_FEEL:
|
|
|
|
case B_FLOATING_SUBSET_WINDOW_FEEL:
|
|
|
|
fWorkspaces = 0x0UL;
|
|
|
|
break;
|
|
|
|
case B_MODAL_ALL_WINDOW_FEEL:
|
|
|
|
case B_FLOATING_ALL_WINDOW_FEEL:
|
|
|
|
case B_SYSTEM_LAST:
|
|
|
|
case B_SYSTEM_FIRST:
|
|
|
|
fWorkspaces = 0xffffffffUL;
|
|
|
|
break;
|
|
|
|
case B_NORMAL_WINDOW_FEEL:
|
2005-04-23 14:05:33 +04:00
|
|
|
break;
|
2005-04-21 22:57:34 +04:00
|
|
|
}
|
|
|
|
}
|