Main Page | Namespace List | Class Hierarchy | Class List | Directories | File List | Namespace Members | Class Members | File Members

NCtypes.h

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------\
00002 |                                                                      |
00003 |                      __   __    ____ _____ ____                      |
00004 |                      \ \ / /_ _/ ___|_   _|___ \                     |
00005 |                       \ V / _` \___ \ | |   __) |                    |
00006 |                        | | (_| |___) || |  / __/                     |
00007 |                        |_|\__,_|____/ |_| |_____|                    |
00008 |                                                                      |
00009 |                               core system                            |
00010 |                                                        (C) SuSE GmbH |
00011 \----------------------------------------------------------------------/
00012 
00013    File:       NCtypes.h
00014 
00015    Author:     Michael Andres <ma@suse.de>
00016    Maintainer: Michael Andres <ma@suse.de>
00017 
00018 /-*/
00019 #ifndef NCtypes_h
00020 #define NCtypes_h
00021 
00022 #include <iosfwd>
00023 
00024 namespace NC {
00025 
00026   enum ADJUST {
00027     CENTER = 0x00,
00028     TOP    = 0x01,
00029     BOTTOM = 0x02,
00030     LEFT   = 0x10,
00031     RIGHT  = 0x20,
00032     TOPLEFT = TOP | LEFT,
00033     TOPRIGHT = TOP | RIGHT,
00034     BOTTOMLEFT = BOTTOM | LEFT,
00035     BOTTOMRIGHT = BOTTOM | RIGHT,
00036   };
00037 
00038   enum WState {
00039     WSdumb,
00040     WSnormal,
00041     WSactive,
00042     WSdisabeled
00043   };
00044 
00045 };
00046 
00047 extern std::ostream & operator<<( std::ostream & str, NC::ADJUST obj );
00048 extern std::ostream & operator<<( std::ostream & str, NC::WState obj );
00049 
00050 #endif // NCtypes_h

Generated on Wed Nov 12 04:52:32 2008 for yast2-ncurses by  doxygen 1.3.9.1