"SfR Fresh" - the SfR Freeware/Shareware Archive

Member "mpdist-3.7.1/mptool/callbacks.h" of archive mpdist-3.7.1.tar.gz:


As a special service "SfR Fresh" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file. That can be also achieved for any archive member file by clicking within an archive contents listing on the first character of the file(path) respectively on the according byte size field.
    1 
    2 /*
    3  * $Header: /cvsroot/mpdist/mpdist/mptool/callbacks.h,v 1.2 2002/10/15 19:09:32 richbastard Exp $
    4  *
    5  * Copyright (c) 1987-2002 Rich Burridge, Sun Microsystems Inc.
    6  * All rights reserved.
    7  *
    8  * This software is free software; you can redistribute it and/or modify it
    9  * under the terms of the GNU Library General Public License as published by
   10  * the Free Software Foundation; either version 2 of the License, or (at your
   11  * option) any later version.
   12  *
   13  * This software is distributed in the hope that it will be useful, but WITHOUT
   14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
   15  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
   16  * License for more details.
   17  *
   18  * You should have received a copy of the GNU Library General Public License
   19  * along with this software; if not, write to the Free Software Foundation,
   20  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
   21  */
   22 
   23 #ifndef __MPTOOL_CALLBACKS_H__
   24 #define __MPTOOL_CALLBACKS_H__
   25 
   26 #include <gtk/gtk.h>
   27 
   28 
   29 void
   30 ShowFile (GtkMenuItem *menuitem,
   31           gpointer user_data);
   32 
   33 void
   34 ExitMptool (GtkMenuItem *menuitem,
   35             gpointer user_data);
   36 
   37 void
   38 ShowHeaders (GtkMenuItem *menuitem,
   39              gpointer user_data);
   40 
   41 void
   42 ShowInput (GtkMenuItem *menuitem,
   43            gpointer user_data);
   44 
   45 void
   46 ShowOutput (GtkMenuItem *menuitem,
   47             gpointer user_data);
   48 
   49 void
   50 ShowPrinting (GtkMenuItem *menuitem,
   51               gpointer user_data);
   52 
   53 void
   54 SaveDefaults (GtkMenuItem *menuitem,
   55               gpointer user_data);
   56 
   57 void
   58 ShowUsername (GtkMenuItem *menuitem,
   59               gpointer user_data);
   60 
   61 void
   62 HelpGeneral (GtkMenuItem *menuitem,
   63              gpointer user_data);
   64 
   65 void
   66 HelpHeaders (GtkMenuItem *menuitem,
   67              gpointer user_data);
   68 
   69 void
   70 HelpInput (GtkMenuItem *menuitem,
   71            gpointer user_data);
   72 
   73 void
   74 HelpOutput (GtkMenuItem *menuitem,
   75             gpointer user_data);
   76 
   77 void
   78 HelpPrinting (GtkMenuItem *menuitem,
   79               gpointer user_data);
   80 
   81 void
   82 HelpSave (GtkMenuItem *menuitem,
   83           gpointer user_data);
   84 
   85 void
   86 HelpUsername (GtkMenuItem *menuitem,
   87               gpointer user_data);
   88 
   89 void
   90 OutputUpdate (GtkToggleButton *togglebutton,
   91               gpointer user_data);
   92 
   93 void
   94 PrintFiles (GtkButton *button,
   95             gpointer user_data);
   96 
   97 void
   98 ResetOptions (GtkButton *button,
   99               gpointer user_data);
  100 
  101 void
  102 ToggleHdrList (GtkToggleButton *togglebutton,
  103                gpointer user_data);
  104 
  105 void
  106 HdrsAdd (GtkButton *button,
  107          gpointer user_data);
  108 
  109 void
  110 HdrsRemove (GtkButton *button,
  111             gpointer user_data);
  112 
  113 void
  114 HdrsApply (GtkButton *button,
  115            gpointer user_data);
  116 
  117 void
  118 HdrsReset (GtkButton *button,
  119            gpointer user_data);
  120 
  121 void
  122 HdrsDismiss (GtkButton *button,
  123              gpointer user_data);
  124 
  125 void
  126 InputApply (GtkButton *button,
  127             gpointer user_data);
  128 
  129 void
  130 InputReset (GtkButton *button,
  131             gpointer user_data);
  132 
  133 void
  134 InputDismiss (GtkButton *button,
  135               gpointer user_data);
  136 
  137 void
  138 OutputApply (GtkButton *button,
  139              gpointer user_data);
  140 
  141 void
  142 OutputReset (GtkButton *button,
  143              gpointer user_data);
  144 
  145 void
  146 OutputDismiss (GtkButton *button,
  147                gpointer user_data);
  148 
  149 void
  150 PrintingApply (GtkButton *button,
  151                gpointer user_data);
  152 
  153 void
  154 PrintingReset (GtkButton *button,
  155                gpointer user_data);
  156 
  157 void
  158 PrintingDismiss (GtkButton *button,
  159                  gpointer user_data);
  160 
  161 void
  162 UNApply (GtkButton *button,
  163          gpointer user_data);
  164 
  165 void
  166 UNReset (GtkButton *button,
  167          gpointer user_data);
  168 
  169 void
  170 UNDismiss (GtkButton *button,
  171            gpointer user_data);
  172 
  173 void
  174 HelpDismiss (GtkButton *button,
  175              gpointer user_data);
  176 
  177 gboolean
  178 dismiss_window (GtkWidget *widget,
  179                 GdkEvent *event,
  180                 gpointer user_data);
  181 
  182 gboolean
  183 frame_interpose (GtkWidget *widget,
  184                 GdkEvent *event,
  185                 gpointer user_data);
  186 
  187 void
  188 HeaderSelected (GtkList *list,
  189                 GtkWidget *widget,
  190                 gpointer user_data);
  191 
  192 void
  193 HeaderText (GtkEditable *editable,
  194             gpointer user_data);
  195 
  196 void
  197 HeaderUnselected (GtkList *list,
  198                   GtkWidget *widget,
  199                   gpointer user_data);
  200 
  201 void
  202 NoticeDismiss (GtkButton *button,
  203                gpointer user_data);
  204 
  205 void
  206 FileApply (GtkButton *button,
  207            gpointer user_data);
  208 
  209 void
  210 FileDismiss (GtkButton *button,
  211              gpointer user_data);
  212 
  213 #endif /* __MPTOOL_CALLBACKS_H__ */