コード例 #1
0
ファイル: gdial.cpp プロジェクト: MahmoudGamlTaha/ring
void GDial::sliderReleasedSlot()
{
	if (strcmp(this->csliderReleasedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->csliderReleasedEvent);
}
コード例 #2
0
ファイル: gslider.cpp プロジェクト: MajdiSobain/ring
void GSlider::sliderPressedSlot()
{
	if (strcmp(this->csliderPressedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->csliderPressedEvent);
}
コード例 #3
0
ファイル: gdial.cpp プロジェクト: MahmoudGamlTaha/ring
void GDial::actionTriggeredSlot()
{
	if (strcmp(this->cactionTriggeredEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->cactionTriggeredEvent);
}
コード例 #4
0
ファイル: gtcpserver.cpp プロジェクト: MajdiSobain/ring
void GTcpServer::acceptErrorSlot()
{
	if (strcmp(this->cacceptErrorEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->cacceptErrorEvent);
}
コード例 #5
0
ファイル: gslider.cpp プロジェクト: MajdiSobain/ring
void GSlider::rangeChangedSlot()
{
	if (strcmp(this->crangeChangedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->crangeChangedEvent);
}
コード例 #6
0
ファイル: gplaintextedit.cpp プロジェクト: MajdiSobain/ring
void GPlainTextEdit::updateRequestSlot()
{
	if (strcmp(this->cupdateRequestEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->cupdateRequestEvent);
}
コード例 #7
0
ファイル: gplaintextedit.cpp プロジェクト: MajdiSobain/ring
void GPlainTextEdit::undoAvailableSlot()
{
	if (strcmp(this->cundoAvailableEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->cundoAvailableEvent);
}
コード例 #8
0
ファイル: gplaintextedit.cpp プロジェクト: MajdiSobain/ring
void GPlainTextEdit::textChangedSlot()
{
	if (strcmp(this->ctextChangedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->ctextChangedEvent);
}
コード例 #9
0
ファイル: gdial.cpp プロジェクト: MahmoudGamlTaha/ring
void GDial::valueChangedSlot()
{
	if (strcmp(this->cvalueChangedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->cvalueChangedEvent);
}
コード例 #10
0
ファイル: gtreeview.cpp プロジェクト: MahmoudGamlTaha/ring
void GTreeView::pressedSlot()
{
	if (strcmp(this->cpressedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->cpressedEvent);
}
コード例 #11
0
ファイル: gplaintextedit.cpp プロジェクト: MajdiSobain/ring
void GPlainTextEdit::cursorPositionChangedSlot()
{
	if (strcmp(this->ccursorPositionChangedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->ccursorPositionChangedEvent);
}
コード例 #12
0
ファイル: gbluetoothserver.cpp プロジェクト: MajdiSobain/ring
void GBluetoothServer::errorSlot()
{
	if (strcmp(this->cerrorEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->cerrorEvent);
}
コード例 #13
0
ファイル: gbluetoothserver.cpp プロジェクト: MajdiSobain/ring
void GBluetoothServer::newConnectionSlot()
{
	if (strcmp(this->cnewConnectionEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->cnewConnectionEvent);
}
コード例 #14
0
ファイル: gtabwidget.cpp プロジェクト: MahmoudGamlTaha/ring
void GTabWidget::currentChangedSlot()
{
	if (strcmp(this->ccurrentChangedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->ccurrentChangedEvent);
}
コード例 #15
0
ファイル: gtabwidget.cpp プロジェクト: MahmoudGamlTaha/ring
void GTabWidget::tabCloseRequestedSlot()
{
	if (strcmp(this->ctabCloseRequestedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->ctabCloseRequestedEvent);
}
コード例 #16
0
ファイル: gvideowidget.cpp プロジェクト: MahmoudGamlTaha/ring
void GVideoWidget::saturationChangedSlot()
{
	if (strcmp(this->csaturationChangedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->csaturationChangedEvent);
}
コード例 #17
0
ファイル: gdrag.cpp プロジェクト: MajdiSobain/ring
void GDrag::targetChangedSlot()
{
	if (strcmp(this->ctargetChangedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->ctargetChangedEvent);
}
コード例 #18
0
ファイル: gvideowidget.cpp プロジェクト: MahmoudGamlTaha/ring
void GVideoWidget::contrastChangedSlot()
{
	if (strcmp(this->ccontrastChangedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->ccontrastChangedEvent);
}
コード例 #19
0
ファイル: gvideowidget.cpp プロジェクト: MahmoudGamlTaha/ring
void GVideoWidget::fullScreenChangedSlot()
{
	if (strcmp(this->cfullScreenChangedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->cfullScreenChangedEvent);
}
コード例 #20
0
ファイル: gplaintextedit.cpp プロジェクト: MajdiSobain/ring
void GPlainTextEdit::selectionChanged()
{
	if (strcmp(this->cselectionChangedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->cselectionChangedEvent);
}
コード例 #21
0
ファイル: gtreeview.cpp プロジェクト: MahmoudGamlTaha/ring
void GTreeView::viewportEnteredSlot()
{
	if (strcmp(this->cviewportEnteredEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->cviewportEnteredEvent);
}
コード例 #22
0
ファイル: gtreeview.cpp プロジェクト: MahmoudGamlTaha/ring
void GTreeView::doubleClickedSlot()
{
	if (strcmp(this->cdoubleClickedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->cdoubleClickedEvent);
}
コード例 #23
0
ファイル: gvideowidget.cpp プロジェクト: MahmoudGamlTaha/ring
void GVideoWidget::brightnessChangedSlot()
{
	if (strcmp(this->cbrightnessChangedEvent,"")==0)
		return ;

	ring_vm_runcode(this->pVM,this->cbrightnessChangedEvent);
}
コード例 #24
0
void GNetworkAccessManager::finishedSlot(QNetworkReply *p1)
{
	if (strcmp(this->cfinishedEvent,"")==0)
		return ;

		ring_list_deleteallitems(this->pParaList);
		ring_list_addcpointer(this->pParaList, p1, "QNetworkReply *" ) ;	
	
	ring_vm_runcode(this->pVM,this->cfinishedEvent);
}
コード例 #25
0
ファイル: glineedit.cpp プロジェクト: EngReemBasheer/ring
void GLineEdit::textEditedSlot()
{
	if (strcmp(this->ctextEditedEvent,"")==0)
		return ;
	ring_vm_runcode(this->pVM,this->ctextEditedEvent);
}
コード例 #26
0
ファイル: gcombobox.cpp プロジェクト: 0muhammed/ring
void GComboBox::currentIndexChangedSlot()
{
	if (strcmp(this->ccurrentIndexChangedEvent,"")==0)
		return ;
	ring_vm_runcode(this->pVM,this->ccurrentIndexChangedEvent);
}
コード例 #27
0
ファイル: gcombobox.cpp プロジェクト: 0muhammed/ring
void GComboBox::editTextChangedSlot()
{
	if (strcmp(this->ceditTextChangedEvent,"")==0)
		return ;
	ring_vm_runcode(this->pVM,this->ceditTextChangedEvent);
}
コード例 #28
0
ファイル: glineedit.cpp プロジェクト: EngReemBasheer/ring
void GLineEdit::selectionChangedSlot()
{
	if (strcmp(this->cselectionChangedEvent,"")==0)
		return ;
	ring_vm_runcode(this->pVM,this->cselectionChangedEvent);
}
コード例 #29
0
ファイル: gaction.cpp プロジェクト: EngReemBasheer/ring
void GAction::clickedSlot()
{
	if (strcmp(this->cClickEvent,"")==0)
		return ;
	ring_vm_runcode(this->pVM,this->cClickEvent);
}
コード例 #30
0
ファイル: gcombobox.cpp プロジェクト: 0muhammed/ring
void GComboBox::highlightedSlot()
{
	if (strcmp(this->chighlightedEvent,"")==0)
		return ;
	ring_vm_runcode(this->pVM,this->chighlightedEvent);
}