browsercore/appfw/Api/Managers/ContentAgent_p.h
changeset 5 0f2326c2a325
equal deleted inserted replaced
1:b0dd75e285d2 5:0f2326c2a325
       
     1 /**
       
     2    This file is part of CWRT package **
       
     3 
       
     4    Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). **
       
     5 
       
     6    This program is free software: you can redistribute it and/or modify
       
     7    it under the terms of the GNU (Lesser) General Public License as 
       
     8    published by the Free Software Foundation, version 2.1 of the License. 
       
     9    This program is distributed in the hope that it will be useful, but
       
    10    WITHOUT ANY WARRANTY; without even the implied warranty of 
       
    11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 
       
    12    (Lesser) General Public License for more details. You should have 
       
    13    received a copy of the GNU (Lesser) General Public License along 
       
    14    with this program. If not, see <http://www.gnu.org/licenses/>.
       
    15 */
       
    16 
       
    17 #ifndef CONTENT_AGENT_P_H
       
    18 #define CONTENT_AGENT_P_H
       
    19 
       
    20 #include <browsercontentdll.h>
       
    21 
       
    22 namespace WRT {
       
    23     class ContentAgent;
       
    24     class ContentAgentPrivate
       
    25     {
       
    26     public:
       
    27         ContentAgentPrivate(ContentAgent * qq, QWidget *parent = 0);
       
    28         ~ContentAgentPrivate();
       
    29 
       
    30     public: // public actions available for this manager
       
    31         
       
    32     public:
       
    33         ContentAgent* const q;
       
    34         //! flag to indicate was able to connect to book marks
       
    35         bool m_connectedToBookmarks;
       
    36         //! flag to indicate bookmarks are loaded from data base
       
    37         bool m_loadedBookmarks;
       
    38         //! flag to indicate history is loaded from data base
       
    39         bool m_loadedHistory;
       
    40         int m_maxUrls;
       
    41         BrowserContent* m_bookmarkSession;
       
    42     };
       
    43 }
       
    44 #endif //CONTENT_AGENT_P_H