76 lines
2.4 KiB
C++
76 lines
2.4 KiB
C++
|
|
/******************************************************************
|
||
|
|
|
||
|
|
JEDI-VCL Demo
|
||
|
|
|
||
|
|
Copyright (C) 2002 Project JEDI
|
||
|
|
|
||
|
|
Original author:
|
||
|
|
|
||
|
|
Contributor(s):
|
||
|
|
korecek: translation from Delphi to BCB
|
||
|
|
|
||
|
|
You may retrieve the latest version of this file at the JEDI-JVCL
|
||
|
|
home page, located at http://jvcl.sourceforge.net
|
||
|
|
|
||
|
|
The contents of this file are used with permission, subject to
|
||
|
|
the Mozilla Public License Version 1.1 (the "License"); you may
|
||
|
|
not use this file except in compliance with the License. You may
|
||
|
|
obtain a copy of the License at
|
||
|
|
http://www.mozilla.org/MPL/MPL-1_1Final.html
|
||
|
|
|
||
|
|
Software distributed under the License is distributed on an
|
||
|
|
"AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
||
|
|
implied. See the License for the specific language governing
|
||
|
|
rights and limitations under the License.
|
||
|
|
|
||
|
|
******************************************************************/
|
||
|
|
// $Id: JvSystemPopupMainFormU.cpp 10610 2006-05-19 13:35:08Z elahn $
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
|
||
|
|
#include <vcl.h>
|
||
|
|
#pragma hdrstop
|
||
|
|
|
||
|
|
#include "JvSystemPopupMainFormU.h"
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
#pragma package(smart_init)
|
||
|
|
#pragma link "JvComponent"
|
||
|
|
#pragma link "JvSystemPopup"
|
||
|
|
#pragma resource "*.dfm"
|
||
|
|
TJvSystemPopupMainForm *JvSystemPopupMainForm;
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
__fastcall TJvSystemPopupMainForm::TJvSystemPopupMainForm(TComponent* Owner)
|
||
|
|
: TForm(Owner)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
void __fastcall TJvSystemPopupMainForm::firstone1Click(TObject *Sender)
|
||
|
|
{
|
||
|
|
TMenuItem *pMI;
|
||
|
|
|
||
|
|
pMI = dynamic_cast<TMenuItem *>(Sender);
|
||
|
|
if(pMI!=NULL)
|
||
|
|
{
|
||
|
|
ShowMessage(pMI->Caption);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------------
|
||
|
|
void __fastcall TJvSystemPopupMainForm::RadioGroup1Click(TObject *Sender)
|
||
|
|
{
|
||
|
|
switch( this->RadioGroup1->ItemIndex )
|
||
|
|
{
|
||
|
|
case 0 :
|
||
|
|
{
|
||
|
|
this->JvSystemPopup1->Position = ppNone;
|
||
|
|
}break;
|
||
|
|
case 1 :
|
||
|
|
{
|
||
|
|
this->JvSystemPopup1->Position = ppApplication;
|
||
|
|
}break;
|
||
|
|
case 2 :
|
||
|
|
{
|
||
|
|
this->JvSystemPopup1->Position = ppForm;
|
||
|
|
}break;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
//---------------------------------------------------------------------------
|