xref: /glogg/src/viewinterface.h (revision b423cd88e57c52bc4c23c685b57ee676012b10f4)
1d96f3f21SNicolas Bonnefon /*
2*b423cd88SNicolas Bonnefon  * Copyright (C) 2013, 2014 Nicolas Bonnefon and other contributors
3d96f3f21SNicolas Bonnefon  *
4d96f3f21SNicolas Bonnefon  * This file is part of glogg.
5d96f3f21SNicolas Bonnefon  *
6d96f3f21SNicolas Bonnefon  * glogg is free software: you can redistribute it and/or modify
7d96f3f21SNicolas Bonnefon  * it under the terms of the GNU General Public License as published by
8d96f3f21SNicolas Bonnefon  * the Free Software Foundation, either version 3 of the License, or
9d96f3f21SNicolas Bonnefon  * (at your option) any later version.
10d96f3f21SNicolas Bonnefon  *
11d96f3f21SNicolas Bonnefon  * glogg is distributed in the hope that it will be useful,
12d96f3f21SNicolas Bonnefon  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13d96f3f21SNicolas Bonnefon  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14d96f3f21SNicolas Bonnefon  * GNU General Public License for more details.
15d96f3f21SNicolas Bonnefon  *
16d96f3f21SNicolas Bonnefon  * You should have received a copy of the GNU General Public License
17d96f3f21SNicolas Bonnefon  * along with glogg.  If not, see <http://www.gnu.org/licenses/>.
18d96f3f21SNicolas Bonnefon  */
19d96f3f21SNicolas Bonnefon 
20d96f3f21SNicolas Bonnefon #ifndef VIEWINTERFACE_H
21d96f3f21SNicolas Bonnefon #define VIEWINTERFACE_H
22d96f3f21SNicolas Bonnefon 
23d96f3f21SNicolas Bonnefon #include <memory>
24d96f3f21SNicolas Bonnefon 
25d96f3f21SNicolas Bonnefon class LogData;
26d96f3f21SNicolas Bonnefon class LogFilteredData;
271b5e406eSNicolas Bonnefon class SavedSearches;
28*b423cd88SNicolas Bonnefon class QuickFindPattern;
29d96f3f21SNicolas Bonnefon 
30d96f3f21SNicolas Bonnefon // ViewInterface represents a high-level view on a log file.
31d96f3f21SNicolas Bonnefon class ViewInterface {
32d96f3f21SNicolas Bonnefon   public:
33039481acSNicolas Bonnefon     // Set the log data and filtered data to associate to this view
34d96f3f21SNicolas Bonnefon     // Ownership stay with the caller but is shared
35039481acSNicolas Bonnefon     void setData( std::shared_ptr<LogData> log_data,
36039481acSNicolas Bonnefon             std::shared_ptr<LogFilteredData> filtered_data )
37039481acSNicolas Bonnefon     { doSetData( log_data, filtered_data ); }
38d96f3f21SNicolas Bonnefon 
39*b423cd88SNicolas Bonnefon     // Set the (shared) quickfind pattern object
40*b423cd88SNicolas Bonnefon     void setQuickFindPattern( std::shared_ptr<QuickFindPattern> qfp )
41*b423cd88SNicolas Bonnefon     { doSetQuickFindPattern( qfp ); }
42*b423cd88SNicolas Bonnefon 
431b5e406eSNicolas Bonnefon     // Set the (shared) search history object
441b5e406eSNicolas Bonnefon     void setSavedSearches( std::shared_ptr<SavedSearches> saved_searches )
451b5e406eSNicolas Bonnefon     { doSetSavedSearches( saved_searches ); }
461b5e406eSNicolas Bonnefon 
47d96f3f21SNicolas Bonnefon     // For save/restore of the context
48d96f3f21SNicolas Bonnefon     /*
49d96f3f21SNicolas Bonnefon     virtual void setViewContext( const ViewContextInterface& view_context ) = 0;
50d96f3f21SNicolas Bonnefon     virtual ViewContextInterface& getViewContext( void ) = 0;
51d96f3f21SNicolas Bonnefon     */
52d96f3f21SNicolas Bonnefon 
53f0708ca8SNicolas Bonnefon     // To allow polymorphic destruction
54f0708ca8SNicolas Bonnefon     virtual ~ViewInterface() {}
55d96f3f21SNicolas Bonnefon 
56d96f3f21SNicolas Bonnefon   protected:
57d96f3f21SNicolas Bonnefon     // Virtual functions (using NVI)
58039481acSNicolas Bonnefon     virtual void doSetData( std::shared_ptr<LogData> log_data,
59039481acSNicolas Bonnefon             std::shared_ptr<LogFilteredData> filtered_data ) = 0;
60*b423cd88SNicolas Bonnefon     virtual void doSetQuickFindPattern(
61*b423cd88SNicolas Bonnefon             std::shared_ptr<QuickFindPattern> qfp ) = 0;
621b5e406eSNicolas Bonnefon     virtual void doSetSavedSearches(
631b5e406eSNicolas Bonnefon             std::shared_ptr<SavedSearches> saved_searches ) = 0;
64d96f3f21SNicolas Bonnefon };
65d96f3f21SNicolas Bonnefon #endif
66