Ignore:
Timestamp:
May 19, 2008, 4:31:37 PM (16 years ago)
Author:
dai_9181
Message:

WindowInfoクラスをリファクタリング。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/abdev/abdev/include/ProjectManager/WindowManager.h

    r616 r617  
    5050public:
    5151    WindowInfo()
    52         : name( NULL )
    53         , HandleName( NULL )
    54         , caption( NULL )
     52        : caption( NULL )
    5553        , MenuID( NULL )
    5654        , IconResName( NULL )
     
    6058    }
    6159
     60    void SetName( const std::string &name )
     61    {
     62        this->name = name;
     63    }
     64    const std::string &GetName() const
     65    {
     66        return name;
     67    }
     68
     69    void SetHandleName( const std::string &handleName )
     70    {
     71        this->handleName = handleName;
     72    }
     73    const std::string &GetHandleName() const
     74    {
     75        return handleName;
     76    }
     77
    6278    //ウィンドウデータ
    63     char *name;
    64     char *HandleName;
    6579    POINT pos;
    6680    SIZE size;
     
    8397    //ツリー項目
    8498    HTREEITEM hTreeItem;
     99
     100private:
     101    std::string name;
     102    std::string handleName;
    85103};
    86104
Note: See TracChangeset for help on using the changeset viewer.