adonthell-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Adonthell-commits] CVS: adonthell/src/gui label_input.cc,NONE,1.1.2.1 l


From: Alexandre Courbot <address@hidden>
Subject: [Adonthell-commits] CVS: adonthell/src/gui label_input.cc,NONE,1.1.2.1 label_input.h,NONE,1.1.2.1
Date: Sat, 01 Feb 2003 12:17:39 -0500

Update of /cvsroot/adonthell/adonthell/src/gui
In directory subversions:/tmp/cvs-serv31139/src/gui

Added Files:
      Tag: Branch_road_to_0-4
        label_input.cc label_input.h 
Log Message:
Slight updates


***** Error reading new file: [Errno 2] No such file or directory: 
'label_input.cc'
--- NEW FILE ---
/*
   
   (C) Copyright 2000/2001 Joel Vennin
   Part of the Adonthell Project http://adonthell.linuxgames.com

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License.
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY.

   See the COPYING file for more details
*/

#ifndef LABEL_INPUT_H_
#define LABEL_INPUT_H_

#include "label.h"


class label_input : public label
{
 public:
    /**
       Constructor
       Initialize to : cursor_moveable,  cursor_visible and editable
    */ 
    label_input (); 

    /**
       Set the label input in editable
    */
    void set_editable (const bool); 
    
    /**
       Input update
    */
    bool input_update();

protected:
    bool editable_; 
};


#endif








reply via email to

[Prev in Thread] Current Thread [Next in Thread]