File: generaldialogs.h

package info (click to toggle)
photoprint 0.3.3-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 4,708 kB
  • ctags: 3,996
  • sloc: cpp: 17,543; sh: 8,311; ansic: 4,299; makefile: 324
file content (10 lines) | stat: -rw-r--r-- 442 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#ifndef GENERAL_DIALOGS_H
#define GENERAL_DIALOGS_H

#include <gtk/gtkwindow.h>

void ErrorMessage_Dialog(const char *message,GtkWidget *parent=NULL);
char *File_Dialog(const char *title,const char *oldfilename,GtkWidget *parent=NULL,bool preview=false);
char *File_Save_Dialog(const char *title,const char *oldfilename,GtkWidget *parent=NULL);
char *Directory_Dialog(const char *title,const char *oldfilename,GtkWidget *parent=NULL);
#endif