This file is indexed.

/usr/include/gwenhywfar4/gwen-gui-fox16/fox16_gui.hpp is in libgwenhywfar60-dev 4.10.0beta-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/***************************************************************************
    begin       : Fri Jan 22 2010
    copyright   : (C) 2010 by Martin Preuss
    email       : martin@libchipcard.de

 ***************************************************************************
 *          Please see toplevel file COPYING for license details           *
 ***************************************************************************/


#ifndef FOX16_GUI_HPP
#define FOX16_GUI_HPP

#include <gwen-gui-fox16/api.h>
#include <gwen-gui-cpp/cppgui.hpp>

#include <gwenhywfar/htmlfont_be.h>


#include <fx.h>

#include <list>


/* TODO:
 * - catch closing of dialog and send GWEN_DialogEvent_TypeClose.
 *
 */


class FOX16_GuiUpdater;


class FOX16GUI_API FOX16_Gui: public CppGui {
public:

  class FOX16GUI_API WinScope {
    friend class FOX16_Gui;

  public:
    typedef enum {
      WIN_SCOPE_TYPE_WINDOW=0,
    } WIN_SCOPE_TYPE;

    WinScope(uint32_t parentId, FXWindow *w);
    WinScope(FXWindow *w);
    ~WinScope();

    uint32_t getParentId() const { return m_parentId;};
    uint32_t getId() const { return m_id;};
    FXWindow *getWindow() const { return m_window;};

  protected:
    WinScope(WIN_SCOPE_TYPE t, uint32_t parentId, FXWindow *w);
    WIN_SCOPE_TYPE getType() const { return m_type;};

    uint32_t m_parentId;
    uint32_t m_id;
    FXWindow *m_window;
    WIN_SCOPE_TYPE m_type;

  };
  typedef std::list<WinScope*> WinScopePtrList;

  enum {
    ID_MAINWINDOW=1
  };

  FOX16_Gui(FXApp* a);
  ~FOX16_Gui();

  FXApp *getApp() { return m_app;};

  FOX16GUI_API static FXString getRawText(const char *text);
  FOX16GUI_API static FXString getHtmlText(const char *text);

  FXWindow *getGuiWindow(uint32_t id);

  FOX16GUI_API static FOX16_Gui *getFgGui();

  virtual int openDialog(GWEN_DIALOG *dlg, uint32_t guiid);
  virtual int closeDialog(GWEN_DIALOG *dlg);
  virtual int runDialog(GWEN_DIALOG *dlg, int untilEnd);

  HTML_FONT *getFont(const char *fontName,
		     int fontSize,
		     uint32_t fontFlags);

protected:
  uint32_t getNextId();
  uint32_t getIdOfLastScope();

  void addWinScope(WinScope *ws);
  void delWinScope(WinScope *ws);

  void dumpScopeList();

  HTML_FONT *findFont(const char *fontName,
		      int fontSize,
		      uint32_t fontFlags);


  int print(const char *docTitle,
	    const char *docType,
	    const char *descr,
	    const char *text,
	    uint32_t guiid);

  int execDialog(GWEN_DIALOG *dlg, uint32_t guiid);

  int getFileName(const char *caption,
		  GWEN_GUI_FILENAME_TYPE fnt,
		  uint32_t flags,
		  const char *patterns,
		  GWEN_BUFFER *pathBuffer,
		  uint32_t guiid);


  WinScope *findWinScope(uint32_t id);

  WinScope *findWinScopeExt(uint32_t id);

  FXApp *m_app;
  WinScopePtrList m_scopeList;
  uint32_t m_lastId;

  FOX16_GuiUpdater *m_updater;

  HTML_FONT_LIST *m_fontList;
};





#endif