f0d95841ee
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27811 a95241bf-73f2-0310-859d-f6bbb57e9c96
50 lines
966 B
C++
50 lines
966 B
C++
/*
|
|
* Copyright 2008, François Revol, <revol@free.fr>. All rights reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _MS_THEME_IMPORTER_H
|
|
#define _MS_THEME_IMPORTER_H
|
|
/*
|
|
* MSTheme Importer class header
|
|
*/
|
|
|
|
#include <List.h>
|
|
|
|
#include "ThemeImporter.h"
|
|
|
|
namespace Z {
|
|
namespace ThemeManager {
|
|
|
|
class MSThemeImporter : public ThemeImporter {
|
|
public:
|
|
MSThemeImporter();
|
|
virtual ~MSThemeImporter();
|
|
|
|
/* presentation */
|
|
|
|
virtual const char *Description(); /* tooltip... */
|
|
|
|
/* Theme manipulation */
|
|
|
|
virtual status_t FetchThemes();
|
|
virtual status_t ImportNextTheme(BMessage **theme);
|
|
virtual status_t EndImports();
|
|
|
|
/* */
|
|
|
|
private:
|
|
|
|
bool ScanDirectory(BDirectory &dir, int depth=-1);
|
|
status_t ParseWinPath(BDirectory &rootDir, const char *from, BPath &to);
|
|
|
|
friend class Z::ThemeManager::ThemeManager;
|
|
BList fEntryList;
|
|
};
|
|
|
|
} // ns ThemeManager
|
|
} // ns Z
|
|
|
|
using namespace Z::ThemeManager;
|
|
|
|
#endif /* _MS_THEME_IMPORTER_H */
|