mirror of
https://github.com/fltk/fltk.git
synced 2026-06-05 16:12:13 +08:00
Fixed another #include...
git-svn-id: file:///fltk/svn/fltk/trunk@135 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// "$Id: Fl_Menu_Type.cxx,v 1.5 1998/12/06 15:09:14 mike Exp $"
|
// "$Id: Fl_Menu_Type.cxx,v 1.6 1998/12/06 15:45:26 mike Exp $"
|
||||||
//
|
//
|
||||||
// Menu item code for the Fast Light Tool Kit (FLTK).
|
// Menu item code for the Fast Light Tool Kit (FLTK).
|
||||||
//
|
//
|
||||||
@@ -149,7 +149,7 @@ const char* Fl_Menu_Item_Type::menu_name(int& i) {
|
|||||||
return unique_id(t, "menu", t->name(), t->label());
|
return unique_id(t, "menu", t->name(), t->label());
|
||||||
}
|
}
|
||||||
|
|
||||||
#include "Fluid_Image.H"
|
#include "Fluid_Image.h"
|
||||||
|
|
||||||
void Fl_Menu_Item_Type::write_static() {
|
void Fl_Menu_Item_Type::write_static() {
|
||||||
if (callback() && !is_name(callback())) {
|
if (callback() && !is_name(callback())) {
|
||||||
@@ -477,7 +477,7 @@ Fl_Menu_Bar_Type Fl_Menu_Bar_type;
|
|||||||
// Shortcut entry item in panel:
|
// Shortcut entry item in panel:
|
||||||
|
|
||||||
#include <FL/Fl_Output.H>
|
#include <FL/Fl_Output.H>
|
||||||
#include "Shortcut_Button.H"
|
#include "Shortcut_Button.h"
|
||||||
#include <FL/fl_draw.H>
|
#include <FL/fl_draw.H>
|
||||||
|
|
||||||
void Shortcut_Button::draw() {
|
void Shortcut_Button::draw() {
|
||||||
@@ -529,5 +529,5 @@ void shortcut_in_cb(Shortcut_Button* i, void* v) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Menu_Type.cxx,v 1.5 1998/12/06 15:09:14 mike Exp $".
|
// End of "$Id: Fl_Menu_Type.cxx,v 1.6 1998/12/06 15:45:26 mike Exp $".
|
||||||
//
|
//
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// "$Id: Fl_Widget_Type.cxx,v 1.11 1998/12/06 15:09:16 mike Exp $"
|
// "$Id: Fl_Widget_Type.cxx,v 1.12 1998/12/06 15:47:37 mike Exp $"
|
||||||
//
|
//
|
||||||
// Widget type code for the Fast Light Tool Kit (FLTK).
|
// Widget type code for the Fast Light Tool Kit (FLTK).
|
||||||
//
|
//
|
||||||
@@ -132,7 +132,7 @@ Fl_Type *Fl_Widget_Type::make() {
|
|||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
|
||||||
#include "Fluid_Image.H"
|
#include "Fluid_Image.h"
|
||||||
|
|
||||||
void Fl_Widget_Type::setimage(Fluid_Image *i) {
|
void Fl_Widget_Type::setimage(Fluid_Image *i) {
|
||||||
if (i == image) return;
|
if (i == image) return;
|
||||||
@@ -218,7 +218,7 @@ Fl_Type *sort(Fl_Type *parent) {
|
|||||||
////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////
|
||||||
// The control panels!
|
// The control panels!
|
||||||
|
|
||||||
#include "widget_panel.H"
|
#include "widget_panel.h"
|
||||||
#include <FL/fl_show_colormap.H>
|
#include <FL/fl_show_colormap.H>
|
||||||
|
|
||||||
// All the callbacks use the argument to indicate whether to load or store.
|
// All the callbacks use the argument to indicate whether to load or store.
|
||||||
@@ -1701,5 +1701,5 @@ int Fl_Widget_Type::read_fdesign(const char* name, const char* value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Widget_Type.cxx,v 1.11 1998/12/06 15:09:16 mike Exp $".
|
// End of "$Id: Fl_Widget_Type.cxx,v 1.12 1998/12/06 15:47:37 mike Exp $".
|
||||||
//
|
//
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// "$Id: Fl_Window_Type.cxx,v 1.10 1998/12/06 15:09:16 mike Exp $"
|
// "$Id: Fl_Window_Type.cxx,v 1.11 1998/12/06 15:49:29 mike Exp $"
|
||||||
//
|
//
|
||||||
// Window type code for the Fast Light Tool Kit (FLTK).
|
// Window type code for the Fast Light Tool Kit (FLTK).
|
||||||
//
|
//
|
||||||
@@ -232,7 +232,7 @@ void Fl_Window_Type::open() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// control panel items:
|
// control panel items:
|
||||||
#include "widget_panel.H"
|
#include "widget_panel.h"
|
||||||
|
|
||||||
void modal_cb(Fl_Light_Button* i, void* v) {
|
void modal_cb(Fl_Light_Button* i, void* v) {
|
||||||
if (v == LOAD) {
|
if (v == LOAD) {
|
||||||
@@ -697,5 +697,5 @@ int Fl_Window_Type::read_fdesign(const char* name, const char* value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
// End of "$Id: Fl_Window_Type.cxx,v 1.10 1998/12/06 15:09:16 mike Exp $".
|
// End of "$Id: Fl_Window_Type.cxx,v 1.11 1998/12/06 15:49:29 mike Exp $".
|
||||||
//
|
//
|
||||||
|
|||||||
Reference in New Issue
Block a user