mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
- Beginning of ede_ask.h/.cpp
- Proper fix for label and text size - no more hacks - Command line parsing, so fltk args can be used (use --help for details) - Autocomplete in location bar and callbacks for shortcut buttons
This commit is contained in:
25
efiler/ede_ask.h
Normal file
25
efiler/ede_ask.h
Normal file
@@ -0,0 +1,25 @@
|
||||
/*
|
||||
* $Id$
|
||||
*
|
||||
* EFiler - EDE File Manager
|
||||
* Part of Equinox Desktop Environment (EDE).
|
||||
* Copyright (c) 2000-2007 EDE Authors.
|
||||
*
|
||||
* This program is licenced under terms of the
|
||||
* GNU General Public Licence version 2 or newer.
|
||||
* See COPYING for details.
|
||||
*/
|
||||
|
||||
// This is a replacement for fl_ask that uses system icons.
|
||||
// TODO: also add support for EDE sound events instead of the ugly beep
|
||||
// ede_choice_alert() is just ede_choice() that uses alert icon.
|
||||
|
||||
|
||||
|
||||
void ede_alert(const char*fmt, ...);
|
||||
void ede_message(const char*fmt, ...);
|
||||
int ede_ask(const char*fmt, ...);
|
||||
int ede_choice(const char*fmt,const char *b0,const char *b1,const char *b2,...);
|
||||
int ede_choice_alert(const char*fmt,const char *b0,const char *b1,const char *b2,...);
|
||||
const char* ede_password(const char*fmt,const char *defstr,...);
|
||||
const char* ede_input(const char*fmt,const char *defstr,...);
|
||||
Reference in New Issue
Block a user