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

📄 securitytooljarsigner.cpp

📁 用bcg库编写的java IDE 源码
💻 CPP
字号:
// SecurityToolJarSigner.cpp : implementation file
//

#include "stdafx.h"
#include "VisualJava.h"
#include "SecurityToolJarSigner.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif


#define CPropertyPage CSAPrefsSubDlg

/////////////////////////////////////////////////////////////////////////////
// CSecurityToolJarSigner property page

    LPCTSTR m_JarsignerOptions[]=
	{
	  m_szpkeystore,
	  m_szpstoretype,
	  m_szpstorepass,
	  m_szpkeypass,
	  m_szpsigfile,
	  m_szpsignedjar,
	  m_szpverify,
	  m_szpcerts,
	  m_szpverbose,
	  m_szpinternalsf,
	  m_szpsectionsonly,
	  m_szpprovider,
	  m_szpj,
	  NULL		
	};
	
	LPCTSTR m_JarVerifyOptions[]=
	{
	  m_szpstoretype,
	  m_szpverify,
	  m_szpcerts,
	  m_szpverbose,
	  m_szpinternalsf,
	  m_szpsectionsonly,
	  m_szpprovider,
	  m_szpj,
	  NULL				
	};




IMPLEMENT_DYNCREATE(CSecurityToolJarSigner, CPropertyPage)

CSecurityToolJarSigner::CSecurityToolJarSigner() : CPropertyPage(CSecurityToolJarSigner::IDD)
{
	//{{AFX_DATA_INIT(CSecurityToolJarSigner)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}

CSecurityToolJarSigner::~CSecurityToolJarSigner()
{
}

void CSecurityToolJarSigner::DoDataExchange(CDataExchange* pDX)
{
	CPropertyPage::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CSecurityToolJarSigner)
	DDX_Control(pDX, IDC_JARSIGNER_COMMANDS, m_wndCommands);
	//}}AFX_DATA_MAP
}
//	DDX_Control(pDX, IDC_JARSIGNER_OPTIONS, m_wndOptions);


BEGIN_MESSAGE_MAP(CSecurityToolJarSigner, CPropertyPage)
	//{{AFX_MSG_MAP(CSecurityToolJarSigner)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CSecurityToolJarSigner message handlers

BOOL CSecurityToolJarSigner::OnInitDialog() 
{
	CPropertyPage::OnInitDialog();
	
	m_wndOptions.SubclassDlgItem(IDC_JARSIGNER_OPTIONS,this);
	return TRUE;
}

⌨️ 快捷键说明

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