CIS-255 Home:
http://www.c-jump.com/bcc/c255c/c255syllabus.htm
2013 CIS-255 C++ Samples
FLTK Graphics -- window, output box, button
-
e001_main_simple.cpp
(download) Button callback, text box update
FLTK Graphics -- maze navigation
-
e002_fl_widget.cpp
(download) Buttons, animation, 2D drawing
-
e002_Room.h
(download) Business class: room with doors
-
Drawing2D.h
(download) class Drawing2D extends Fl_Widget
FLTK FLUID -- maze navigation
-
e003_main.cpp
(download) main() -- configures rooms, creates window (fluid project MazeWindow.fl)
-
MazeWindow.h
(download) class CMazeWindow -- generated by FLUID
-
MazeWindow.cpp
(download) class CMazeWindow implementation -- generated by FLUID
FLTK FLUID -- maze navigation v2
-
e004_main.cpp
(download) main() -- configures rooms, creates window (fluid project CFluidWindowMaze)
-
CFluidWindowMaze.h
(download) class CFluidWindowMaze -- generated by FLUID
-
CFluidWindowMaze.cpp
(download) class CFluidWindowMaze implementation -- generated by FLUID
-
CWindowMaze.h
(download) class CWindowMaze extends CFluidWindowMaze -- static callbacks and animation
-
CWIndowMaze.cpp
(download) class CWindowMaze implementation
FLTK FLUID -- simple window
-
e005_main.cpp
(download) main() -- creates window (fluid project CFluidWindow.fl)
-
CFluidWindow.h
(download) class CFluidWindow -- generated by FLUID -- input, output, button
-
CFluidWindow.cpp
(download) class CFluidWindow -- generated by FLUID -- implementation
-
CDemoWindow.h
(download) class CDemoWindow extends CFluidWindow -- callback management
Pointers
-
main.cpp
(download) examples of new, [ ], and *
FLTK FLUID -- timer
-
main.cpp
(download) main() -- fluid project: CFluidTimerUI.fl
Entire MSVC-2010 project: c255c_timer.zip
-
CTimerWindow.h
(download) class CTimerWindow inherits from CFluidTimerUI
-
CTimerWindow.cpp
(download) class CTimerWindow implementation
-
CFluidTimerUI.h
(download) class CFluidTimerUI generated by FLUID
-
CFluidTimerUI.cpp
(download) class CFluidTimerUI implementation generated by FLUID
substring class with overloaded operators
-
substring.h
(download) class substring declaration
-
substring.cpp
(download) class substring implementation
-
main.cpp
(download) main() -- test for overloaded substring operators