mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
65018f75b7
emenueditor
31 lines
721 B
C
Executable File
31 lines
721 B
C
Executable File
/*
|
|
* $Id$
|
|
*
|
|
* Package manager for Equinox Desktop Environment
|
|
* Part of Equinox Desktop Environment (EDE).
|
|
* Copyright (c) 2000-2006 EDE Authors.
|
|
*
|
|
* This program is licenced under terms of the
|
|
* GNU General Public Licence version 2 or newer.
|
|
* See COPYING for details.
|
|
*/
|
|
|
|
|
|
#ifndef einstaller_h
|
|
#define einstaller_h
|
|
#include <fltk/Window.h>
|
|
#include <fltk/InvisibleBox.h>
|
|
#include <fltk/Group.h>
|
|
#include <fltk/Input.h>
|
|
#include <fltk/Image.h>
|
|
#include <fltk/Button.h>
|
|
#include <fltk/CheckButton.h>
|
|
#include <fltk/TextBuffer.h>
|
|
#include <fltk/TextEditor.h>
|
|
#include <fltk/ProgressBar.h>
|
|
#include <fltk/file_chooser.h>
|
|
|
|
extern fltk::TextEditor* result_output;
|
|
extern fltk::ProgressBar* install_progress;
|
|
#endif
|