📄 dbms.hrh
字号:
/*
* ============================================================================
* Name : DBMS resource header file DBMS.hrh
* Part of : DBMS
* Created : 04.11.2006 by Forum Nokia
* Description:
* This file contains declarations for constants of DBMS example.
* The file can be included in C++ or resource file.
*
* Version : 2.0
* Copyright: Nokia Corporation
* ============================================================================
*/
#ifndef __DBMS_HRH__
#define __DBMS_HRH__
// DBMS enumerate command codes
enum TDBMSIds
{
EOpenCmd = 1, // Open existing database
ECreateCmd, // Create (replace) and open a database
ERemoveDbCmd, // Drop database and delete file
EAddBookCmd, // Show the book editor view for adding a book
EBackCmd, // Back from book editor view
EAddBookAPICmd, // Add a book using DBMS API
EAddBookSQLCmd, // Add a book using SQL
ERemoveBookCmd, // Remove a named book(s)
ERemoveAllBooksCmd,// Remove all books
EChangeTitleCmd, // Change title for a book
EGetAllBooksCmd, // Refresh list of all books in database
ESearchBooksCmd, // Search a book with name (title)
EQuickFindCmd, // Retrieve details of book using index
EAddDateCmd, // Add a date column to books table
ERemoveDateCmd, // Remove the date column from books table
EColumnNamesCmd, // Get column names of books table
ECloseCmd // Close an open database
};
#endif // __DBMS_HRH__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -