mirror of
https://github.com/Team-Resurgent/XBMC4Xbox.git
synced 2026-08-15 11:18:13 -07:00
If ever adding the XBMC4Xbox source to GitHub use "git add -f -A" or it wont add all the files.
83 lines
2.5 KiB
C++
83 lines
2.5 KiB
C++
/*
|
|
* 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/>.
|
|
*
|
|
*/
|
|
|
|
#include "GUIViewStateScripts.h"
|
|
#include "GUIBaseContainer.h"
|
|
#include "FileItem.h"
|
|
#include "ViewState.h"
|
|
#include "settings/Settings.h"
|
|
#include "FileSystem/Directory.h"
|
|
|
|
using namespace XFILE;
|
|
|
|
CGUIViewStateWindowScripts::CGUIViewStateWindowScripts(const CFileItemList& items) : CGUIViewState(items)
|
|
{
|
|
AddSortMethod(SORT_METHOD_LABEL, 551, LABEL_MASKS("%L", "%I", "%L", "")); // Filename, Size | Foldername, empty
|
|
AddSortMethod(SORT_METHOD_DATE, 552, LABEL_MASKS("%L", "%J", "%L", "%J")); // Filename, Date | Foldername, Date
|
|
AddSortMethod(SORT_METHOD_SIZE, 553, LABEL_MASKS("%L", "%I", "%L", "%I")); // Filename, Size | Foldername, Size
|
|
AddSortMethod(SORT_METHOD_FILE, 561, LABEL_MASKS("%L", "%I", "%L", "")); // Filename, Size | FolderName, empty
|
|
SetSortMethod(SORT_METHOD_LABEL);
|
|
|
|
SetViewAsControl(DEFAULT_VIEW_LIST);
|
|
|
|
SetSortOrder(SORT_ORDER_ASC);
|
|
LoadViewState(items.GetPath(), WINDOW_SCRIPTS);
|
|
}
|
|
|
|
void CGUIViewStateWindowScripts::SaveViewState()
|
|
{
|
|
SaveViewToDb(m_items.GetPath(), WINDOW_SCRIPTS);
|
|
}
|
|
|
|
CStdString CGUIViewStateWindowScripts::GetExtensions()
|
|
{
|
|
return ".py";
|
|
}
|
|
|
|
VECSOURCES& CGUIViewStateWindowScripts::GetSources()
|
|
{
|
|
m_sources.clear();
|
|
|
|
CMediaSource share;
|
|
if (g_settings.GetNumProfiles() > 1)
|
|
{
|
|
if (CDirectory::Exists("P:\\scripts"))
|
|
{
|
|
CMediaSource share2;
|
|
share2.strName = "Profile Scripts";
|
|
share2.strPath = "P:\\scripts";
|
|
share2.m_iDriveType = CMediaSource::SOURCE_TYPE_LOCAL;
|
|
m_sources.push_back(share2);
|
|
}
|
|
share.strName = "Shared Scripts";
|
|
}
|
|
else
|
|
share.strName = "Scripts";
|
|
|
|
share.strPath = "special://home/scripts";
|
|
if (!CDirectory::Exists(share.strPath))
|
|
share.strPath = "special://xbmc/scripts";
|
|
share.m_iDriveType = CMediaSource::SOURCE_TYPE_LOCAL;
|
|
m_sources.push_back(share);
|
|
|
|
return CGUIViewState::GetSources();
|
|
}
|
|
|