This commit is contained in:
75
Common/LCLayout.h
Normal file
75
Common/LCLayout.h
Normal file
@@ -0,0 +1,75 @@
|
|||||||
|
/*===========================================================================
|
||||||
|
==== ====
|
||||||
|
==== ====
|
||||||
|
=============================================================================
|
||||||
|
==== ====
|
||||||
|
==== File : LCLayout.h ====
|
||||||
|
==== Project name : ====
|
||||||
|
==== Project number : ====
|
||||||
|
==== Creation date : 14/10/2000 ====
|
||||||
|
==== ====
|
||||||
|
==== ====
|
||||||
|
=============================================================================
|
||||||
|
===========================================================================*/
|
||||||
|
|
||||||
|
#ifndef LCLAYOUT_H
|
||||||
|
#define LCLAYOUT_H
|
||||||
|
#if _MSC_VER >= 1000
|
||||||
|
#pragma once
|
||||||
|
#endif // _MSC_VER >= 1000
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//============================================================================
|
||||||
|
// Inclusions
|
||||||
|
//============================================================================
|
||||||
|
|
||||||
|
|
||||||
|
//============================================================================
|
||||||
|
// Constants
|
||||||
|
//============================================================================
|
||||||
|
|
||||||
|
|
||||||
|
//============================================================================
|
||||||
|
//============================================================================
|
||||||
|
// classe CLCLayout
|
||||||
|
/*============================================================================
|
||||||
|
|
||||||
|
=============================================================================*/
|
||||||
|
class CLCLayout
|
||||||
|
{
|
||||||
|
|
||||||
|
//============================================================================
|
||||||
|
// Data types
|
||||||
|
//============================================================================
|
||||||
|
public:
|
||||||
|
|
||||||
|
//============================================================================
|
||||||
|
// Creators
|
||||||
|
//============================================================================
|
||||||
|
public:
|
||||||
|
|
||||||
|
private: // Not implemented functions
|
||||||
|
CLCLayout &operator = (const CLCLayout&);
|
||||||
|
CLCLayout(const CLCLayout&);
|
||||||
|
|
||||||
|
//============================================================================
|
||||||
|
// Member functions
|
||||||
|
//============================================================================
|
||||||
|
|
||||||
|
// Implementation
|
||||||
|
public:
|
||||||
|
static void RestoreLayout(CListCtrl* pLC, const CString& regKey);
|
||||||
|
static void SaveLayout (CListCtrl* pLC, const CString& regKey);
|
||||||
|
|
||||||
|
// Protected functions
|
||||||
|
protected:
|
||||||
|
|
||||||
|
//============================================================================
|
||||||
|
// Member variables
|
||||||
|
//============================================================================
|
||||||
|
protected:
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // LCLAYOUT_H
|
||||||
|
|
||||||
Reference in New Issue
Block a user