2002-12-23 00:00:00 +00:00
|
|
|
|
//========= Copyright <20> 1996-2002, Valve LLC, All rights reserved. ============
|
2001-11-08 00:00:00 +00:00
|
|
|
|
//
|
|
|
|
|
// Purpose:
|
|
|
|
|
//
|
|
|
|
|
// $NoKeywords: $
|
|
|
|
|
//=============================================================================
|
2000-06-05 00:00:00 +00:00
|
|
|
|
|
|
|
|
|
#ifndef VGUI_DESKTOP_H
|
|
|
|
|
#define VGUI_DESKTOP_H
|
|
|
|
|
|
|
|
|
|
#include<VGUI.h>
|
|
|
|
|
#include<VGUI_Dar.h>
|
|
|
|
|
#include<VGUI_Panel.h>
|
|
|
|
|
|
|
|
|
|
namespace vgui
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
class DesktopIcon;
|
|
|
|
|
class TaskBar;
|
|
|
|
|
|
|
|
|
|
class VGUIAPI Desktop : public Panel
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
Desktop(int x,int y,int wide,int tall);
|
|
|
|
|
public:
|
|
|
|
|
virtual void setSize(int wide,int tall);
|
|
|
|
|
virtual void iconActivated(DesktopIcon* icon);
|
|
|
|
|
virtual void addIcon(DesktopIcon* icon);
|
|
|
|
|
virtual void arrangeIcons();
|
|
|
|
|
virtual Panel* getBackground();
|
|
|
|
|
virtual Panel* getForeground();
|
|
|
|
|
protected:
|
|
|
|
|
Panel* _background;
|
|
|
|
|
Panel* _foreground;
|
|
|
|
|
TaskBar* _taskBar;
|
|
|
|
|
Dar<DesktopIcon*> _desktopIconDar;
|
|
|
|
|
int _cascade[2];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif
|