/*
 ============================================================================
 xoblite -> an alternative shell based on Blackbox for Windows
 Copyright © 2002-2005 Karl-Henrik Henriksson [qwilk]
 Copyright © 2001-2004 The Blackbox for Windows Development Team
 http://xoblite.net/ - #bb4win on irc.freenode.net
 ============================================================================

  Blackbox for Windows is free software, released under the
  GNU General Public License (GPL version 2 or later), with an extension
  that allows linking of proprietary modules under a controlled interface.
  What this means is that plugins etc. are allowed to be released
  under any license the author wishes. Please note, however, that the
  original Blackbox gradient math code used in Blackbox for Windows
  is available under the BSD license.

  http://www.fsf.org/licenses/gpl.html
  http://www.fsf.org/licenses/gpl-faq.html#LinkingOverControlledInterface
  http://www.xfree86.org/3.3.6/COPYRIGHT2.html#5

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  GNU General Public License for more details.

  For additional license information, please read the included license.html

 ============================================================================
*/

#ifndef __DESKTOPMENU_H 
#define __DESKTOPMENU_H 

#include "Menu.h" 

class MenuMaker;

//===========================================================================

class DesktopMenu : public Menu
{
public:
        DesktopMenu(const char *pszTitle, MenuMaker *pMenuMaker);
        virtual ~DesktopMenu();
        void OnShow(bool fShow);
        bool OnUser(int nMessage, WPARAM wParam, LPARAM lParam, LRESULT &lResult);
        void UpdateFolder();
protected:
        MenuMaker *m_pMenuMaker;
};

//===========================================================================

class DesktopMenuItem : public FolderItem
{
public:
        DesktopMenuItem(char *pszTitle, MenuMaker *pMenuMaker, int nDesktop);
        virtual ~DesktopMenuItem();

        bool Active(bool bActivate);
        void UpdateFolder();
        void Invoke();
        void AddWindow(HWND hWnd);
        void Attached(Menu* pMenu);
        void Timer(int nTimer);
        friend BOOL CALLBACK CheckTaskEnumProc(HWND hwnd, LPARAM lParam);

private:
        MenuMaker* m_pMenuMaker;
        int m_nDesktop;
        int m_nTimer;
};

//===========================================================================

#endif /* __DESKTOPMENU_H */ 





syntax highlighting by

w e b c p p
web c plus plus