This file is indexed.

/usr/include/cwidget/dialogs.h is in libcwidget-dev 0.5.17-2.

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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
// dialogs.h      -*-c++-*-
//
//   Copyright (C) 2000, 2007-2008 Daniel Burrows
//
//   This program is free software; you can redistribute it and/or
//   modify it under the terms of the GNU General Public License as
//   published by the Free Software Foundation; either version 2 of
//   the License, or (at your option) any later version.
//
//   This program is distributed in the hope that it will be useful,
//   but WITHOUT ANY WARRANTY; without even the implied warranty of
//   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
//   General Public License for more details.
//
//   You should have received a copy of the GNU General Public License
//   along with this program; see the file COPYING.  If not, write to
//   the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
//   Boston, MA 02111-1307, USA.

/** \file dialogs.h
 *
 *  \brief Utility functions to construct prefabricated widgets.
 *
 *  For instance, basic message boxes and yes/no queries can be
 *  constructed here.
 */

#ifndef DIALOGS_H
#define DIALOGS_H

#include <cwidget/widgets/editline.h> // for editline::history_list

#include <cwidget/generic/util/slotarg.h>

#include <string>

namespace cwidget
{
  class fragment;
  class style;

  namespace widgets
  {
    class pager;
    class widget;
  }

  /** \brief Routines to construct simple dialog boxes. */
  namespace dialogs
  {
    // Canned dialog-boxes:

    /** Create a dialog box with a single button.
     *
     *  \param widget the widget to place above the button.
     *
     *  \param okslot the slot to be triggered when the button is pressed.
     *
     *  \param label the label of the button
     *
     *  \param attr the attributes to use for the background of the dialog
     *  box, defaults to reverse-video of DefaultWidgetBackground.
     */
    widgets::widget_ref ok(const widgets::widget_ref &widget,
			   util::slot0arg okslot, const std::wstring &label,
			   const style &st);

    widgets::widget_ref ok(fragment *msg, util::slot0arg okslot=NULL, bool scrollbar=false);
    widgets::widget_ref ok(fragment *msg, util::slot0arg okslot, const style &st, bool scrollbar=false);
    widgets::widget_ref ok(fragment *msg, util::slot0arg okslot, const std::wstring &label,
			   const style &st, bool scrollbar=false);

    widgets::widget_ref ok(const std::wstring &msg, util::slot0arg okslot=NULL);
    widgets::widget_ref ok(const std::wstring &msg, util::slot0arg okslot,
			   const style &st);
    widgets::widget_ref ok(const std::wstring &msg, util::slot0arg okslot, const std::wstring &label,
			   const style &st);

    /** Create a dialog box with two buttons, labelled "yes" and "no".
     *
     *  \param widget the widget to place above the buttons
     *
     *  \param yesslot the callback to be triggered when "yes" is selected
     *
     *  \param yeslabel the label of the "yes" button
     *
     *  \param noslot the callback to be triggered when "no" is selected
     *
     *  \param yeslabel the label of the "no" button
     *
     *  \param attr the attribute to use as the background of widgets
     *  created by this routine
     *
     *  \param deflt if \b true, the "yes" button will be selected by default;
     *  otherwise, the "no" button will be selected by default.
     */
    widgets::widget_ref yesno(const widgets::widget_ref &widget,
			      util::slot0arg yesslot,
			      const std::wstring &yeslabel,
			      util::slot0arg noslot,
			      const std::wstring &nolabel,
			      const style &st,
			      bool deflt=true);

    widgets::widget_ref yesno(fragment *msg,
			      util::slot0arg yesslot,
			      util::slot0arg noslot,
			      bool scrollbar=false,
			      bool deflt=true);
    widgets::widget_ref yesno(fragment *msg,
			      util::slot0arg yesslot,
			      util::slot0arg noslot,
			      const style &st,
			      bool scrollbar=false,
			      bool deflt=true);
    widgets::widget_ref yesno(fragment *msg,
			      util::slot0arg yesslot,
			      const std::wstring &yeslabel,
			      util::slot0arg noslot,
			      const std::wstring &nolabel,
			      const style &st,
			      bool scrollbar=false,
			      bool deflt=true);

    widgets::widget_ref yesno(const std::wstring &msg,
			      util::slot0arg yesslot,
			      util::slot0arg noslot,
			      bool deflt=true);
    widgets::widget_ref yesno(const std::wstring &msg,
			      util::slot0arg yesslot,
			      util::slot0arg noslot,
			      const style &st,
			      bool deflt=true);
    widgets::widget_ref yesno(const std::wstring &msg,
			      util::slot0arg yesslot,
			      const std::wstring &yeslabel,
			      util::slot0arg noslot,
			      const std::wstring &nolabel,
			      const style &st,
			      bool deflt=true);

    widgets::widget_ref fileview(const std::string &fn,
				 util::slot0arg okslot=NULL,
				 util::slotarg<sigc::slot1<void, widgets::pager &> > search_slot=NULL,
				 util::slotarg<sigc::slot1<void, widgets::pager &> > repeat_search_slot=NULL,
				 util::slotarg<sigc::slot1<void, widgets::pager &> > repeat_search_back_slot=NULL,
				 const char *encoding=NULL);
    widgets::widget_ref fileview(const std::string &fn,
				 util::slot0arg okslot,
				 util::slotarg<sigc::slot1<void, widgets::pager &> > search_slot,
				 util::slotarg<sigc::slot1<void, widgets::pager &> > repeat_search_slot,
				 util::slotarg<sigc::slot1<void, widgets::pager &> > repeat_search_back_slot,
				 const style &st,
				 const char *encoding=NULL);

    widgets::widget_ref string(fragment *msg,
			       const std::wstring &deflt,
			       util::slotarg<sigc::slot1<void, std::wstring> > okslot,
			       util::slotarg<sigc::slot0<void> > cancel_slot,
			       util::slotarg<sigc::slot1<void, std::wstring> > changed_slot,
			       widgets::editline::history_list *history,
			       const style &st);

    widgets::widget_ref string(const std::wstring &msg,
			       const std::wstring &deflt,
			       util::slotarg<sigc::slot1<void, std::wstring> > okslot,
			       util::slotarg<sigc::slot0<void> > cancel_slot,
			       util::slotarg<sigc::slot1<void, std::wstring> > changed_slot,
			       widgets::editline::history_list *history,
			       const style &st);

    widgets::widget_ref string(const std::wstring &msg,
			       const std::wstring &deflt,
			       util::slotarg<sigc::slot1<void, std::wstring> > slot,
			       util::slotarg<sigc::slot0<void> > cancel_slot,
			       util::slotarg<sigc::slot1<void, std::wstring> > changed_slot,
			       widgets::editline::history_list *history);
  }
}

#endif