Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / dtinfo / dtinfogen / infolib / etc / GraphicsTask.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: GraphicsTask.h /main/3 1996/07/18 16:46:09 drk $ */
24 #ifndef GRAPHICS_TASK_HDR
25 #define GRAPHICS_TASK_HDR
26
27 #include "Task.h"
28 #include "FlexBuffer.h"
29
30 #include "oliasdb/olias_consts.h"
31
32 class Token;
33 class SearchEngine;
34 class OL_Data;
35
36 class GraphicsTask : public ComplexTask {
37
38 private:
39   int f_base;
40   SearchEngine *f_parent;
41   const FlexBuffer   *termsbuf;
42   OL_Data      *graphics_data;
43   OL_Data      *f_title;
44   void write_record( const Token & );
45   GR_TYPE graphics_type( const char * );
46   
47 public:
48   int IsDone() { return( f_base == -1 ); }
49   int HasSearchTerms() const;
50   const FlexBuffer *GetTerms() { return(termsbuf); }
51
52 public:
53   void markup ( const Token & );
54   GraphicsTask( SearchEngine *parent, const Token &t);
55   
56 };
57
58 inline
59 int
60 GraphicsTask::HasSearchTerms() const
61 {
62   if ( !termsbuf ) {
63     return 0;
64   }
65   else             {
66     FlexBuffer *tmpBuffer = ( FlexBuffer *)termsbuf;
67     return( tmpBuffer->GetSize() );
68   }
69 }
70   
71
72 #endif
73   
74
75