File: prefops.h

package info (click to toggle)
denemo 0.9.2-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 26,724 kB
  • sloc: ansic: 59,006; lisp: 13,874; sh: 11,666; makefile: 2,082; xml: 634; sed: 16
file content (24 lines) | stat: -rw-r--r-- 557 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* prefops.h
 * header file for initializing preferences
 *
 * for Denemo, a gtk+ frontend to GNU Lilypond
 * (c) 1999-2005 Matthew Hiller
 */
#ifndef PREFOPSH
#define PREFOPSH

#include <denemo/denemo.h>

#define INITIAL_WIDTH 1000
#define INITIAL_HEIGHT 500

const gchar *locatedotdenemo (void);
const gchar *locateprintdir (void);
void initprefs (void);
gint readxmlprefsString (gchar * xmlprefs);
gint writeXMLPrefs( DenemoPrefs *prefs);
void writeHistory(void);
gint readHistory(void);
void storeWindowState (void);
void loadWindowState (void);
#endif