mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
65018f75b7
emenueditor
52 lines
1.1 KiB
C
52 lines
1.1 KiB
C
/*
|
|
* $Id$
|
|
*
|
|
* Font chooser widget
|
|
* Part of Equinox Desktop Environment (EDE).
|
|
* Copyright (c) 2000-2006 EDE Authors.
|
|
*
|
|
* Based on:
|
|
* Font demo program for the Fast Light Tool Kit (FLTK).
|
|
* Copyright 1998-2006 by Bill Spitzak and others.
|
|
*
|
|
* This program is licenced under terms of the
|
|
* GNU General Public Licence version 2 or newer.
|
|
* See COPYING for details.
|
|
*/
|
|
|
|
#ifndef _EDE_FONTCHOOSER_H_
|
|
#define _EDE_FONTCHOOSER_H_
|
|
|
|
#include <fltk/run.h>
|
|
#include <fltk/Window.h>
|
|
#include <fltk/Browser.h>
|
|
#include <fltk/CheckButton.h>
|
|
#include <fltk/draw.h>
|
|
#include <fltk/Font.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
/*#include <efltk/Fl.h>
|
|
#include <efltk/Fl_Double_Window.h>
|
|
#include <efltk/Fl_Browser.h>
|
|
#include <efltk/Fl_String.h>
|
|
#include <efltk/Fl_Locale.h>
|
|
#include <efltk/Fl_Check_Button.h>
|
|
#include <efltk/fl_ask.h>
|
|
#include <efltk/fl_draw.h>
|
|
#include <efltk/Fl_Box.h>
|
|
#include <efltk/fl_utf8.h>
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <ctype.h>*/
|
|
|
|
#include "ecolorutils.h"
|
|
|
|
EDEFont font_chooser(EDEFont);
|
|
|
|
|
|
#endif
|