00001 /*************************************************************************** 00002 *cr 00003 *cr (C) Copyright 1995-2019 The Board of Trustees of the 00004 *cr University of Illinois 00005 *cr All Rights Reserved 00006 *cr 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * RCS INFORMATION: 00011 * 00012 * $RCSfile: VMDTitle.h,v $ 00013 * $Author: johns $ $Locker: $ $State: Exp $ 00014 * $Revision: 1.33 $ $Date: 2019/01/17 21:21:02 $ 00015 * 00016 *************************************************************************** 00017 * DESCRIPTION: 00018 * 00019 * A flashy title object which is displayed when the program starts up, 00020 * until a molecule is loaded. 00021 * 00022 ***************************************************************************/ 00023 #ifndef VMDTITLE_H 00024 #define VMDTITLE_H 00025 00026 #include "Displayable.h" 00027 #include "DispCmds.h" 00028 00031 class VMDTitle : public Displayable { 00032 private: 00033 DisplayDevice *disp; 00034 DispCmdColorIndex color; 00035 double starttime; 00036 void redraw_list(void); 00037 int letterson; 00038 00039 public: 00040 VMDTitle(DisplayDevice *, Displayable *); 00041 virtual void prepare(); 00042 }; 00043 00044 #endif 00045