controlpanelplugins/themeplugin/src/cpthemeclient_p.h
branchGCC_SURGE
changeset 27 848a3adde87f
parent 16 8c9427577f2a
parent 25 19394c261aa5
equal deleted inserted replaced
16:8c9427577f2a 27:848a3adde87f
     1 /*
       
     2  * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3  * All rights reserved.
       
     4  * This component and the accompanying materials are made available
       
     5  * under the terms of "Eclipse Public License v1.0""
       
     6  * which accompanies this distribution, and is available
       
     7  * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8  *
       
     9  * Initial Contributors:
       
    10  * Nokia Corporation - initial contribution.
       
    11  *
       
    12  * Contributors:
       
    13  *
       
    14  * Description:  
       
    15  *   
       
    16  */
       
    17 
       
    18 #ifndef CPTHEMECLIENT_P_H
       
    19 #define CPTHEMECLIENT_P_H
       
    20 
       
    21 #include <qglobal.h>
       
    22 #include <QByteArray>
       
    23 
       
    24 
       
    25 class CpThemeClientPrivate;
       
    26 
       
    27 class CpThemeClient
       
    28 {
       
    29     CpThemeClientPrivate* d_ptr;
       
    30     Q_DECLARE_PRIVATE_D(d_ptr, CpThemeClient)
       
    31 
       
    32 public:
       
    33     bool connectToServer();
       
    34 
       
    35     bool changeTheme(const QString& newtheme);
       
    36 
       
    37     bool isConnected();
       
    38 
       
    39 public:
       
    40     static CpThemeClient *global();
       
    41     static void releaseInstance();
       
    42     ~CpThemeClient();
       
    43 
       
    44 private:
       
    45     CpThemeClient();
       
    46 };
       
    47 
       
    48 #endif /* CPTHEMECLIENT_P_H */