LinuxRendererGLES.h: correct path to `DVDVideoCodec.h`
[vuplus_xbmc] / xbmc / pictures / GUIWindowPictures.h
1 #pragma once
2
3 /*
4  *      Copyright (C) 2005-2008 Team XBMC
5  *      http://www.xbmc.org
6  *
7  *  This Program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 2, or (at your option)
10  *  any later version.
11  *
12  *  This Program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with XBMC; see the file COPYING.  If not, write to
19  *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
20  *  http://www.gnu.org/copyleft/gpl.html
21  *
22  */
23
24 #include "windows/GUIMediaWindow.h"
25 #include "GUIWindowSlideShow.h"
26 #include "PictureThumbLoader.h"
27 #include "DllImageLib.h"
28
29 class CGUIDialogProgress;
30
31 class CGUIWindowPictures : public CGUIMediaWindow, public IBackgroundLoaderObserver
32 {
33 public:
34   CGUIWindowPictures(void);
35   virtual ~CGUIWindowPictures(void);
36   virtual bool OnMessage(CGUIMessage& message);
37
38 protected:
39   virtual void OnInfo(int item);
40   virtual bool OnClick(int iItem);
41   virtual void UpdateButtons();
42   virtual void OnPrepareFileItems(CFileItemList& items);
43   virtual bool Update(const CStdString &strDirectory);
44   virtual void GetContextButtons(int itemNumber, CContextButtons &buttons);
45   virtual bool OnContextButton(int itemNumber, CONTEXT_BUTTON button);
46   virtual CStdString GetStartFolder(const CStdString &dir);
47
48   void OnRegenerateThumbs();
49   virtual bool OnPlayMedia(int iItem);
50   bool ShowPicture(int iItem, bool startSlideShow);
51   void OnShowPictureRecursive(const CStdString& strPath);
52   void OnSlideShow(const CStdString& strPicture);
53   void OnSlideShow();
54   void OnSlideShowRecursive(const CStdString& strPicture);
55   void OnSlideShowRecursive();
56   virtual void OnItemLoaded(CFileItem* pItem);
57   virtual void LoadPlayList(const CStdString& strPlayList);
58
59   CGUIDialogProgress* m_dlgProgress;
60   DllImageLib m_ImageLib;
61
62   CPictureThumbLoader m_thumbLoader;
63 };