File: QtChatTheme.h

package info (click to toggle)
swift-im 5.0~alpha2.145.g12d031cf8%2Bdfsg-4.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,256 kB
  • sloc: cpp: 134,640; python: 2,701; sh: 774; xml: 561; javascript: 69; makefile: 59
file content (41 lines) | stat: -rw-r--r-- 2,122 bytes parent folder | download
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
/*
 * Copyright (c) 2010-2016 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <QList>
#include <QString>

namespace Swift {
    class QtChatTheme {
        public:
            QtChatTheme(const QString& themePath);
            QString getHeader() const {return fileContents_[Header];}
            QString getFooter() const {return fileContents_[Footer];}
            QString getContent() const {return fileContents_[Content];}
            QString getStatus() const {return fileContents_[Status];}
            QString getTopic() const {return fileContents_[Topic];}
            QString getFileTransferRequest() const {return fileContents_[FileTransferRequest];}
            QString getIncomingContent() const {return fileContents_[IncomingContent];}
            QString getIncomingNextContent() const {return fileContents_[IncomingNextContent];}
            QString getIncomingContext() const {return fileContents_[IncomingContext];}
            QString getIncomingNextContext() const {return fileContents_[IncomingNextContext];}
            QString getOutgoingContent() const {return fileContents_[OutgoingContent];}
            QString getOutgoingNextContent() const {return fileContents_[OutgoingNextContent];}
            QString getOutgoingContext() const {return fileContents_[OutgoingContext];}
            QString getOutgoingNextContext() const {return fileContents_[OutgoingNextContext];}
            QString getTemplate() const {return fileContents_[Template];}
            QString getMainCSS() const {return fileContents_[MainCSS];}
            QString getBase() const;
            QString getUnread() const;

        private:
            enum files {Header = 0, Footer, Content, Status, Topic, FileTransferRequest, IncomingContent, IncomingNextContent, IncomingContext, IncomingNextContext, OutgoingContent, OutgoingNextContent, OutgoingContext, OutgoingNextContext, Template, MainCSS, TemplateDefault, Unread, /*Must be last!*/EndMarker};
            bool qrc_;
            QList<QString> fileContents_;
            QString themePath_;
    };
}