1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506
|
/*
* Copyright (C) 2005-2013 Team XBMC
* http://xbmc.org
*
* This Program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with XBMC; see the file COPYING. If not, see
* <http://www.gnu.org/licenses/>.
*
*/
#pragma once
#include <limits.h>
#include <vector>
#include "Window.h"
#include "windows/GUIMediaWindow.h"
#include "swighelper.h"
#include "WindowDialogMixin.h"
namespace XBMCAddon
{
namespace xbmcgui
{
class ListItem;
class WindowXMLInterceptor;
//
/// \defgroup python_xbmcgui_window_xml Subclass - WindowXML
/// \ingroup python_xbmcgui_window
/// @{
/// @brief __GUI xml window class.__
///
/// \python_class{ xbmcgui.WindowXML(xmlFilename, scriptPath[, defaultSkin, defaultRes]) }
///
/// Creates a new xml file based window class.
///
/// \note This class include also all calls from <b><c>\ref python_xbmcgui_window</c></b>.
///
/// @param xmlFilename string - the name of the xml file to
/// look for.
/// @param scriptPath string - path to script. used to
/// fallback to if the xml doesn't exist in
/// the current skin. (eg xbmcaddon.Addon().getAddonInfo('path').decode('utf-8'))
/// @param defaultSkin [opt] string - name of the folder in the
/// skins path to look in for the xml.
/// (default='Default')
/// @param defaultRes [opt] string - default skins resolution.
/// (default='720p')
/// @throws Exception if more then 200 windows are created.
///
/// \remark Skin folder structure is e.g. **resources/skins/Default/720p**
///
/// Deleting this window will activate the old window that was active
/// and resets (not delete) all controls that are associated with this
/// window.
///
///--------------------------------------------------------------------------
///
/// **Example:**
/// ~~~~~~~~~~~~~{.py}
/// ..
/// win = xbmcgui.WindowXML('script-Lyrics-main.xml', xbmcaddon.Addon().getAddonInfo('path').decode('utf-8'), 'default', '1080p')
/// win.doModal()
/// del win
/// ..
/// ~~~~~~~~~~~~~
///
///
///--------------------------------------------------------------------------
///
/// On functions defined input variable <b><tt>controlId</tt> (GUI control identifier)</b>
/// is the on window.xml defined value behind type added with <tt><b>id="..."</b></tt> and
/// used to identify for changes there and on callbacks.
///
/// ~~~~~~~~~~~~~{.xml}
/// <control type="label" id="31">
/// <description>Title Label</description>
/// ...
/// </control>
/// <control type="progress" id="32">
/// <description>progress control</description>
/// ...
/// </control>
/// ~~~~~~~~~~~~~
///
//
class WindowXML : public Window
{
std::string sFallBackPath;
protected:
#ifndef SWIG
/**
* This helper retrieves the next available id. It is doesn't
* assume that the global lock is already being held.
*/
static int lockingGetNextAvailableWindowId();
WindowXMLInterceptor* interceptor;
#endif
public:
WindowXML(const String& xmlFilename, const String& scriptPath,
const String& defaultSkin = "Default",
const String& defaultRes = "720p");
virtual ~WindowXML();
#ifdef DOXYGEN_SHOULD_USE_THIS
///
/// \ingroup python_xbmcgui_window_xml
/// @brief \python_func{ addItem(item[, position]) }
///-----------------------------------------------------------------------
/// Add a new item to this Window List.
///
/// @param item string, unicode or ListItem - item to add.
/// @param position [opt] integer - position of item to add. (NO Int = Adds to bottom,0 adds to top, 1 adds to one below from top,-1 adds to one above from bottom etc etc )
/// - If integer positions are greater than list size, negative positions will add to top of list, positive positions will add to bottom of list
///
///
///
/// ----------------------------------------------------------------------
///
/// **Example:**
/// ~~~~~~~~~~~~~{.py}
/// ..
/// self.addItem('Reboot Kodi', 0)
/// ..
/// ~~~~~~~~~~~~~
///
addItem(...);
#else
SWIGHIDDENVIRTUAL void addItem(const Alternative<String, const ListItem*>& item, int position = INT_MAX);
#endif
#ifdef DOXYGEN_SHOULD_USE_THIS
///
/// \ingroup python_xbmcgui_window_xml
/// @brief \python_func{ addItems(items) }
///-----------------------------------------------------------------------
/// Add a list of items to to the window list.
///
///
/// @param items List - list of strings, unicode objects or ListItems to add.
///
///
/// ----------------------------------------------------------------------
///
/// **Example:**
/// ~~~~~~~~~~~~~{.py}
/// ..
/// self.addItems(['Reboot Kodi', 'Restart Kodi'])
/// ..
/// ~~~~~~~~~~~~~
///
addItems(...);
#else
SWIGHIDDENVIRTUAL void addItems(const std::vector<Alternative<String, const XBMCAddon::xbmcgui::ListItem* > > & items);
#endif
#ifdef DOXYGEN_SHOULD_USE_THIS
///
/// \ingroup python_xbmcgui_window_xml
/// @brief \python_func{ removeItem(position) }
///-----------------------------------------------------------------------
/// Removes a specified item based on position, from the Window List.
///
/// @param position integer - position of item to remove.
///
///
///
/// ----------------------------------------------------------------------
///
/// **Example:**
/// ~~~~~~~~~~~~~{.py}
/// ..
/// self.removeItem(5)
/// ..
/// ~~~~~~~~~~~~~
///
removeItem(...);
#else
SWIGHIDDENVIRTUAL void removeItem(int position);
#endif
#ifdef DOXYGEN_SHOULD_USE_THIS
///
/// \ingroup python_xbmcgui_window_xml
/// @brief \python_func{ getCurrentListPosition() }
///-----------------------------------------------------------------------
/// Gets the current position in the Window List.
///
///
///
/// ----------------------------------------------------------------------
///
/// **Example:**
/// ~~~~~~~~~~~~~{.py}
/// ..
/// pos = self.getCurrentListPosition()
/// ..
/// ~~~~~~~~~~~~~
///
getCurrentListPosition();
#else
SWIGHIDDENVIRTUAL int getCurrentListPosition();
#endif
#ifdef DOXYGEN_SHOULD_USE_THIS
///
/// \ingroup python_xbmcgui_window_xml
/// @brief \python_func{ setCurrentListPosition(position) }
///-----------------------------------------------------------------------
/// Set the current position in the Window List.
///
/// @param position integer - position of item to set.
///
///
///
/// ----------------------------------------------------------------------
///
/// **Example:**
/// ~~~~~~~~~~~~~{.py}
/// ..
/// self.setCurrentListPosition(5)
/// ..
/// ~~~~~~~~~~~~~
///
setCurrentListPosition(...);
#else
SWIGHIDDENVIRTUAL void setCurrentListPosition(int position);
#endif
#ifdef DOXYGEN_SHOULD_USE_THIS
///
/// \ingroup python_xbmcgui_window_xml
/// @brief \python_func{ getListItem(position) }
///-----------------------------------------------------------------------
/// Returns a given ListItem in this Window List.
///
/// @param position integer - position of item to return.
///
///
///
/// ----------------------------------------------------------------------
///
/// **Example:**
/// ~~~~~~~~~~~~~{.py}
/// ..
/// listitem = self.getListItem(6)
/// ..
/// ~~~~~~~~~~~~~
///
getListItem(...);
#else
SWIGHIDDENVIRTUAL ListItem* getListItem(int position);
#endif
#ifdef DOXYGEN_SHOULD_USE_THIS
///
/// \ingroup python_xbmcgui_window_xml
/// @brief \python_func{ getListSize() }
///-----------------------------------------------------------------------
/// Returns the number of items in this Window List.
///
///
///
/// ------------------------------------------------------------------------
///
/// **Example:**
/// ~~~~~~~~~~~~~{.py}
/// ..
/// listSize = self.getListSize()
/// ..
/// ~~~~~~~~~~~~~
///
getListSize();
#else
SWIGHIDDENVIRTUAL int getListSize();
#endif
#ifdef DOXYGEN_SHOULD_USE_THIS
///
/// \ingroup python_xbmcgui_window_xml
/// @brief \python_func{ clearList() }
///-----------------------------------------------------------------------
/// Clear the Window List.
///
///
///
/// ------------------------------------------------------------------------
///
/// **Example:**
/// ~~~~~~~~~~~~~{.py}
/// ..
/// self.clearList()
/// ..
/// ~~~~~~~~~~~~~
///
clearList();
#else
/**
* clearList() -- Clear the Window List.
*
* example:\n
* - self.clearList()
*/
SWIGHIDDENVIRTUAL void clearList();
#endif
#ifdef DOXYGEN_SHOULD_USE_THIS
///
/// \ingroup python_xbmcgui_window_xml
/// @brief \python_func{ setContainerProperty(key, value) }
///-----------------------------------------------------------------------
/// Sets a container property, similar to an infolabel.
///
/// @param key string - property name.
/// @param value string or unicode - value of property.
///
/// @note Key is NOT case sensitive.\n
/// You can use the above as keywords for arguments and skip certain
/// optional arguments.\n
/// Once you use a keyword, all following arguments require the keyword.
///
///
/// ------------------------------------------------------------------------
/// @python_v17 Changed function from **setProperty** to **setContainerProperty**.
///
/// **Example:**
/// ~~~~~~~~~~~~~{.py}
/// ..
/// self.setContainerProperty('Category', 'Newest')
/// ..
/// ~~~~~~~~~~~~~
///
setContainerProperty(...);
#else
SWIGHIDDENVIRTUAL void setContainerProperty(const String &strProperty, const String &strValue);
#endif
#ifdef DOXYGEN_SHOULD_USE_THIS
///
/// \ingroup python_xbmcgui_window_xml
/// @brief \python_func{ getCurrentContainerId() }
///-----------------------------------------------------------------------
/// Get the id of the currently visible container.
///
/// ------------------------------------------------------------------------
/// @python_v17 Added new function.
///
/// **Example:**
/// ~~~~~~~~~~~~~{.py}
/// ..
/// container_id = self.getCurrentContainerId()
/// ..
/// ~~~~~~~~~~~~~
///
getCurrentContainerId(...);
#else
SWIGHIDDENVIRTUAL int getCurrentContainerId();
#endif
#ifndef SWIG
// CGUIWindow
SWIGHIDDENVIRTUAL bool OnMessage(CGUIMessage& message);
SWIGHIDDENVIRTUAL bool OnAction(const CAction &action);
SWIGHIDDENVIRTUAL void AllocResources(bool forceLoad = false);
SWIGHIDDENVIRTUAL void FreeResources(bool forceUnLoad = false);
SWIGHIDDENVIRTUAL bool OnClick(int iItem);
SWIGHIDDENVIRTUAL bool OnDoubleClick(int iItem);
SWIGHIDDENVIRTUAL void Process(unsigned int currentTime, CDirtyRegionList &dirtyregions);
SWIGHIDDENVIRTUAL bool IsMediaWindow() const { XBMC_TRACE; return true; };
// This method is identical to the Window::OnDeinitWindow method
// except it passes the message on to their respective parents.
// Since the respective parent differences are handled by the
// interceptor there's no reason to define this one here.
// SWIGHIDDENVIRTUAL void OnDeinitWindow(int nextWindowID);
protected:
// CGUIWindow
SWIGHIDDENVIRTUAL bool LoadXML(const String &strPath, const String &strPathLower);
// CGUIMediaWindow
SWIGHIDDENVIRTUAL void GetContextButtons(int itemNumber, CContextButtons &buttons);
SWIGHIDDENVIRTUAL bool Update(const String &strPath);
void SetupShares();
String m_scriptPath;
String m_mediaDir;
friend class WindowXMLInterceptor;
#endif
};
///@}
// Ideally what we want here is a Dialog/Media Window. The problem is that these
// are two orthogonal discriminations of CGUIWindow and there wasn't a previous
// accounting for this possibility through the use of making CGUIWindow a
// virtual base class of the pertinent subclasses. So now we're left with
// no good solution.
//
// <strike>So here we're going to have the 'main' hierarchy (the one visible to SWIG)
// go the way intended - through WindowXML, but we're going to borrow dialog
// functionality from CGUIDialog by using it as a Mixin.</strike>
//
// jmarshall says that this class has no reason to inherit from CGUIMediaWindow.
// At some point this entire hierarchy needs to be reworked. The XML handling
// routines should be put in a mixin.
//
/// \defgroup python_xbmcgui_window_dialog_xml Subclass - WindowDialogXML
/// \ingroup python_xbmcgui_window_xml
/// @{
/// @brief __GUI xml window dialog__
///
/// \python_class{ xbmcgui.WindowXMLDialog(xmlFilename, scriptPath[, defaultSkin, defaultRes]) }
///
/// Creates a new xml file based window dialog class.
///
/// @param xmlFilename string - the name of the xml file to
/// look for.
/// @param scriptPath string - path to script. used to
/// fallback to if the xml doesn't exist in
/// the current skin. (eg \ref python_xbmcaddon_Addon "xbmcaddon.Addon().getAddonInfo('path').decode('utf-8'))"
/// @param defaultSkin [opt] string - name of the folder in the
/// skins path to look in for the xml.
/// (default='Default')
/// @param defaultRes [opt] string - default skins resolution.
/// (default='720p')
/// @throws Exception if more then 200 windows are created.
///
/// @note Skin folder structure is e.g. **resources/skins/Default/720p**
///
///
///-------------------------------------------------------------------------
///
/// **Example:**
/// ~~~~~~~~~~~~~{.py}
/// ..
/// dialog = xbmcgui.WindowXMLDialog('script-Lyrics-main.xml', xbmcaddon.Addon().getAddonInfo('path').decode('utf-8'), 'default', '1080p')
/// dialog.doModal()
/// del dialog
/// ..
/// ~~~~~~~~~~~~~
///
///
///-------------------------------------------------------------------------
///
/// On functions defined input variable <b><tt>controlId</tt> (GUI control identifier)</b>
/// is the on window.xml defined value behind type added with <tt><b>id="..."</b></tt> and
/// used to identify for changes there and on callbacks.
///
/// ~~~~~~~~~~~~~{.xml}
/// <control type="label" id="31">
/// <description>Title Label</description>
/// ...
/// </control>
/// <control type="progress" id="32">
/// <description>progress control</description>
/// ...
/// </control>
/// ~~~~~~~~~~~~~
///
//
class WindowXMLDialog : public WindowXML, private WindowDialogMixin
{
public:
WindowXMLDialog(const String& xmlFilename, const String& scriptPath,
const String& defaultSkin = "Default",
const String& defaultRes = "720p");
virtual ~WindowXMLDialog();
#ifndef SWIG
SWIGHIDDENVIRTUAL bool OnMessage(CGUIMessage &message);
SWIGHIDDENVIRTUAL bool IsDialogRunning() const { XBMC_TRACE; return WindowDialogMixin::IsDialogRunning(); }
SWIGHIDDENVIRTUAL bool IsDialog() const { XBMC_TRACE; return true;};
SWIGHIDDENVIRTUAL bool IsModalDialog() const { XBMC_TRACE; return true; };
SWIGHIDDENVIRTUAL bool IsMediaWindow() const { XBMC_TRACE; return false; };
SWIGHIDDENVIRTUAL bool OnAction(const CAction &action);
SWIGHIDDENVIRTUAL void OnDeinitWindow(int nextWindowID);
SWIGHIDDENVIRTUAL bool LoadXML(const String &strPath, const String &strPathLower);
SWIGHIDDENVIRTUAL inline void show() { XBMC_TRACE; WindowDialogMixin::show(); }
SWIGHIDDENVIRTUAL inline void close() { XBMC_TRACE; WindowDialogMixin::close(); }
friend class DialogJumper;
#endif
};
///@}
}
}
|