// defines.h // // definitions for the Glaum project // #ifndef DEFINES_H #define DEFINES_H #define APPLICATION_TITLE "Glaum v0.2" #define PIPE_BUFFER_SIZE 80 // feel free to modify the next 5 settings to reflect // your default system setup // this determines whether the file selection dialog is modal #define MODAL_FILE_SELECTION true // prepend cdrecord command with sudo? // if true, make sure you don't have to enter a password for sudo #define SUDO_FOR_BURNING false // how fast do we burn? #define CDRECORD_DEFAULT_SPEED 4 // get this from `cdrecord --scanbus` #define CDRECORD_DEFAULT_DEVICE "0,1,0" // get verbose output from cdrecord by default #define CDRECORD_USE_VERBOSE false #define X(w, x, y, z) gtk_signal_connect(GTK_OBJECT(w), x, GTK_SIGNAL_FUNC(y), z) #define WINDOW_SPACING 3 #define VBOX_MAIN_SPACING 3 #define VBOX_DEF_SPACING 0 #define HBOX_DEF_SPACING 0 #define MENU_SPACING 0 #define NOTEBOOK_SPACING 0 #define FRAME_SPACING 0 #define HBOX_SPACING 2 #define VBOX_SPACING 2 #define LABEL_SPACING 2 #define ENTRY_SPACING 0 #define BUTTON_SPACING 0 #define SEPARATOR_SPACING 5 #define STATUSBAR_SPACING 0 #define SCROLLBAR_SPACING 0 #define TEXT_SPACING 0 #define LIST_SPACING 0 #define CHECKBOX_SPACING 0 #endif /* DEFINES_H */