⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ureport.h

📁 dicom file 查看工具 DICOM文件是医疗设备使用的文件格式。
💻 H
字号:
//---------------------------------------------------------------------------
// This file is part of Dicom Explorer, see http://www.sourceforge.net/projects/dcmsee
//
// This program is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published
// by the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.                                 
// 
// This software is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
// Lesser General Public License for more details.
// 
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// Liu Jie (liucoldstar@yahoo.com)
//
//---------------------------------------------------------------------------

#ifndef uReportH
#define uReportH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include <ComCtrls.hpp>
#include <Menus.hpp>

#include "uCommon.h"
#include "uDictionary.h"
#include <Dialogs.hpp>
//---------------------------------------------------------------------------
class TfrmReport : public TForm
{
__published:	// IDE-managed Components
        TPageControl *PageControl;
        TTabSheet *TabSheetAbstract;
        TTabSheet *TabSheetContest;
        TListView *ListViewAbstract;
        TListView *ListViewAllItems;
private:	// User declarations
        TList *m_pList;
        TImageInformation *m_pImageInformation;
private:
        AnsiString __fastcall ValueToString(char *pValue,int nType);
        AnsiString __fastcall ImageTypeToString(int nImageCompressionType);
        AnsiString __fastcall ColorTypeToString(int nColorType);
        //AnsiString __fastcall ModalityTypeToString(int nModalityType);
public:		// User declarations
        __fastcall TfrmReport(TComponent* Owner);
        void __fastcall SetList(TList *pList);
        void __fastcall SetImageInformation(TImageInformation *pImageInformation);
        void __fastcall CreateReport(void);
        void __fastcall Clear(void);
};
//---------------------------------------------------------------------------
extern PACKAGE TfrmReport *frmReport;
//---------------------------------------------------------------------------
#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -