diff options
| author | 2008-09-12 13:15:37 +0000 | |
|---|---|---|
| committer | 2008-09-12 13:15:37 +0000 | |
| commit | e675ca00ec2358a6b246f1dd032b781f9db21db7 (patch) | |
| tree | 2513ce8634df518c31d78fae42b7c0277b0a5fff /src | |
| parent | added doxygen comments; (diff) | |
| download | KVIrc-e675ca00ec2358a6b246f1dd032b781f9db21db7.tar.gz KVIrc-e675ca00ec2358a6b246f1dd032b781f9db21db7.tar.bz2 KVIrc-e675ca00ec2358a6b246f1dd032b781f9db21db7.zip | |
removed obsolete urllabel kvs object class.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@2437 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src')
| -rw-r--r-- | src/modules/objects/class_urllabel.cpp | 327 | ||||
| -rw-r--r-- | src/modules/objects/class_urllabel.h | 64 | ||||
| -rw-r--r-- | src/modules/objects/libkviobjects.cpp | 4 | ||||
| -rwxr-xr-x | src/modules/objects/objects.vcproj | 79 |
4 files changed, 44 insertions, 430 deletions
diff --git a/src/modules/objects/class_urllabel.cpp b/src/modules/objects/class_urllabel.cpp deleted file mode 100644 index ed80b99a3..000000000 --- a/src/modules/objects/class_urllabel.cpp +++ /dev/null @@ -1,327 +0,0 @@ -//vim: ts=8 -// File : class_urllabel.cpp -// Creation date : Thu Feb 18 1:27:44 CEST 2001 by Krzysztof Godlewski -// -// This file is part of the KVirc irc client distribution -// Copyright (C) 1999-2000 Krzysztof Godlewski -// Copyright (C) 1999-2000 Szymon Stefanek (pragma at kvirc dot net) -// -// This program is FREE software. You can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your opinion) any later version. -// -// This program 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 General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, write to the Free Software Foundation, -// Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -// - - -#include "class_urllabel.h" - -#include <QLabel> -#include "kvi_debug.h" -#include "kvi_locale.h" -#include "kvi_error.h" - -#include "kvi_app.h" - -#include "kvi_window.h" -#include "kvi_kvs_script.h" -#include <QMouseEvent> -#define QT_LEFT_BUTTON Qt::LeftButton -//#warning "Functions to change colors for different states" -//#warning "$setUnderline(), $underline()" - -//extern KviApp * g_pApp; -/*static KviScriptObjectClass * g_pUrlLabelClass = 0; - -static KviScriptObject * urlLabelClassCreateInstance(KviScriptObjectClass * c, - KviScriptObject * p, const char * n) -{ - return new KviScriptUrlLabelObject(c, p, n); -} - -KviScriptUrlLabelObject::KviScriptUrlLabelObject(KviScriptObjectClass * c, \ -KviScriptObject * p, const char *n) : KviScriptLabelObject(c, p, n) -{ - m_normalClr = QColor("black"); - m_enterClr = QColor("blue"); - m_activeClr = QColor("red"); - m_useSingleClick = true; -// ((QLabel *)widget())->setAutoResize(true); - //widget()->setCursor(Qt::pointingHandCursor); - //((KviScriptWidgetObject: * )p)->widget()->setCursor(Qt::pointingHandCursor); -} - -KviScriptUrlLabelObject::~KviScriptUrlLabelObject() -{ -} - -bool KviScriptUrlLabelObject::eventFilter(QObject * o, QEvent * e) -{ - QPalette pal = ((QLabel *)widget())->palette(); - - switch(e->type()) - { - case QEvent::Enter: - pal.setColor(QColorGroup::Foreground, m_enterClr); - break; - case QEvent::Leave: - // this doesn't work... - if(((QMouseEvent *)e)->state() & QEvent::LeftButton) - pal.setColor(QColorGroup::Foreground, \ - m_activeClr); - else - pal.setColor(QColorGroup::Foreground, \ - m_normalClr); - break; - case QEvent::MouseButtonRelease: - pal.setColor(QColorGroup::Foreground, m_enterClr); - // perform actions here - if(!m_lastClickWasDbl && !m_useSingleClick) - break; - if(!m_action.isEmpty()) - { - - } - break; - case QEvent::MouseButtonPress: - m_lastClickWasDbl = false; - if(!((QMouseEvent * )e)->button() & \ - QEvent::LeftButton || !m_useSingleClick) - break; - pal.setColor(QColorGroup::Foreground, m_activeClr); - break; - case QEvent::MouseButtonDblClick: - m_lastClickWasDbl = true; - if(m_useSingleClick) - break; - pal.setColor(QColorGroup::Foreground, m_activeClr); - break; - default: // make gcc happy - break; - } - - ((QLabel *)widget())->setPalette(pal); - - return false; -} -*/ -//#warning "Docs for urllabel" - -/* - @doc: urllabel - @keyterms: - display url, link - @title: - urllabel class - @type: - class - @short: - Displays an URI allowing to perform actions on click - @inherits: - [class]object[/class] - [class]widget[/class] - [class]label[/class] - @description: - This widget allows you to bind specific action on click. It can - open an url, or execute any KVI++ code. The text color reacts on - cursor movements and clicks. - @functions: - !fn: $setUrl(<text:string>) - Sets the url to be opened when the links is activated. The way - the label opens the url is defined in KVirc config dialog. - !fn: <string> $url() - Returns the currently set url. - !fn: $setAction(<text:string>) - Sets the action to be performed when the link is triggered. It - can be any valid KVI++ code. Note that all KVirc commands must - be prefixed with a '/', just as if you typed them in the input - widget. - !fn: <string> $action() - Returns currently set action string. - !fn: $setText(<text>) - Sets the label's text. Reimplemented from internal reasons. - !fn: $setCursorChange(<bEnabled:boolean>) - Tells the label wheather to change or not the shape of cursor, - when it is above the widget. Default is false. - !fn: <boolean> $cursorChange() - Returns true if the cursor changes over the label, false if not. - !fn: $setUseSingleClick(<bEnabled:boolean>) - If <bEnabled> is true, the label will react on single clicks, - otherwise only double clicks will trigger the link. - !fn: <boolean> $useSingleClick() - Returns true if the label reacts on single clicks, false if it - reacts only on double clicks. -*/ - -KVSO_BEGIN_REGISTERCLASS(KviKvsObject_urlabel,"urllabel","label") - - KVSO_REGISTER_HANDLER(KviKvsObject_urlabel,"setUrl",functionsetUrl) - KVSO_REGISTER_HANDLER(KviKvsObject_urlabel,"url",functionurl) - KVSO_REGISTER_HANDLER(KviKvsObject_urlabel,"setAction",functionsetAction) - KVSO_REGISTER_HANDLER(KviKvsObject_urlabel,"action",functionaction) - KVSO_REGISTER_HANDLER(KviKvsObject_urlabel,"setText",functionsetText) - KVSO_REGISTER_HANDLER(KviKvsObject_urlabel,"setCursorChange",functionsetCursorChange) - KVSO_REGISTER_HANDLER(KviKvsObject_urlabel,"cursorChange",functioncursorChange) - KVSO_REGISTER_HANDLER(KviKvsObject_urlabel,"setUseSingleClick",functionsetUseSingleClick) - KVSO_REGISTER_HANDLER(KviKvsObject_urlabel,"useSingleClick",functionuseSingleClick) - -KVSO_END_REGISTERCLASS(KviKvsObject_urlabel) - - -KVSO_BEGIN_CONSTRUCTOR(KviKvsObject_urlabel,KviKvsObject_label) - - m_normalClr = QColor("black"); - m_enterClr = QColor("blue"); - m_activeClr = QColor("red"); - m_useSingleClick = true; - -KVSO_END_CONSTRUCTOR(KviKvsObject_urlabel) - -KVSO_BEGIN_DESTRUCTOR(KviKvsObject_urlabel) - -KVSO_END_CONSTRUCTOR(KviKvsObject_urlabel) - -bool KviKvsObject_urlabel::eventFilter(QObject * o, QEvent * e) -{ - QPalette pal = ((QLabel *)widget())->palette(); - - switch(e->type()) - { - case QEvent::Enter: - pal.setColor(QPalette::Foreground, m_enterClr); - break; - case QEvent::Leave: - // this doesn't work... - if(((QMouseEvent *)e)->button() & QT_LEFT_BUTTON) - pal.setColor(QPalette::Foreground, \ - m_activeClr); - else - pal.setColor(QPalette::Foreground, \ - m_normalClr); - break; - case QEvent::MouseButtonRelease: - pal.setColor(QPalette::Foreground, m_enterClr); - // perform actions here - if(!m_lastClickWasDbl && !m_useSingleClick) - break; - if(!m_action.isEmpty()) - { - KviKvsScript kvs("commandline",m_action); - kvs.run(g_pActiveWindow,0,0/*,KviKvsScript::AssumeLocals*/); - - } else if(!m_url.isEmpty()) { - KviKvsScript kvs("commandline","openurl "+m_url); - kvs.run(g_pActiveWindow,0,0/*,KviKvsScript::AssumeLocals*/); - } - break; - case QEvent::MouseButtonPress: - m_lastClickWasDbl = false; - if(!((QMouseEvent * )e)->button() & \ - QT_LEFT_BUTTON || !m_useSingleClick) - break; - pal.setColor(QPalette::Foreground, m_activeClr); - break; - case QEvent::MouseButtonDblClick: - m_lastClickWasDbl = true; - if(m_useSingleClick) - break; - pal.setColor(QPalette::Foreground, m_activeClr); - break; - default: // make gcc happy - break; - } - - ((QLabel *)widget())->setPalette(pal); - - return false; -} -bool KviKvsObject_urlabel::functionsetUrl(KviKvsObjectFunctionCall *c) -{ - QString szUrl; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("url",KVS_PT_STRING,0,szUrl) - KVSO_PARAMETERS_END(c) - if(!widget()) return true; - if(szUrl.isEmpty()){ - c->error(__tr2qs("Not Enough Parameters")); - return false; - } - m_url = szUrl; - return true; -} -bool KviKvsObject_urlabel::functionurl(KviKvsObjectFunctionCall *c) -{ - c->returnValue()->setString(m_url); - return true; -} -bool KviKvsObject_urlabel::functionsetAction(KviKvsObjectFunctionCall *c) -{ - QString szAction; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("action",KVS_PT_STRING,0,szAction) - KVSO_PARAMETERS_END(c) - if(!widget()) return true; - if(szAction.isEmpty()){ - c->error(__tr2qs("Not Enough Parameters")); - return false; - } - m_action = szAction; - return true; -} -bool KviKvsObject_urlabel::functionsetText(KviKvsObjectFunctionCall *c) -{ - QString szText; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("text",KVS_PT_STRING,0,szText) - KVSO_PARAMETERS_END(c) - if(!widget()) return true; - ((QLabel *)widget())->setText(szText); - ((QLabel *)widget())->setFixedSize(((QLabel *)widget())->sizeHint()); - return true; -} -bool KviKvsObject_urlabel::functionaction(KviKvsObjectFunctionCall *c) -{ - c->returnValue()->setString(m_action); - return true; -} -bool KviKvsObject_urlabel::functionsetCursorChange(KviKvsObjectFunctionCall *c) -{ - bool bFlag; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("bEnabled",KVS_PT_BOOLEAN,0,bFlag) - KVSO_PARAMETERS_END(c) - if(!widget()) - return true; - if(m_changeCursor = bFlag) - widget()->setCursor(Qt::PointingHandCursor); - else - widget()->setCursor(Qt::ArrowCursor); - return true; -} -bool KviKvsObject_urlabel::functionsetUseSingleClick(KviKvsObjectFunctionCall *c) -{ - bool bFlag; - KVSO_PARAMETERS_BEGIN(c) - KVSO_PARAMETER("bEnabled",KVS_PT_BOOLEAN,0,bFlag) - KVSO_PARAMETERS_END(c) - m_useSingleClick = bFlag; - return true; -} -bool KviKvsObject_urlabel::functionuseSingleClick(KviKvsObjectFunctionCall *c) -{ - c->returnValue()->setBoolean(m_useSingleClick); - return true; -} -bool KviKvsObject_urlabel::functioncursorChange(KviKvsObjectFunctionCall *c) -{ - c->returnValue()->setBoolean(m_changeCursor); - return true; -} diff --git a/src/modules/objects/class_urllabel.h b/src/modules/objects/class_urllabel.h deleted file mode 100644 index 0273c99aa..000000000 --- a/src/modules/objects/class_urllabel.h +++ /dev/null @@ -1,64 +0,0 @@ -#ifndef _CLASS_URLLABEL_H_ -#define _CLASS_URLLABEL_H_ -//vim: ts=8 -// File : class_urllabel.h -// Creation date : Thu Feb 18 1:28:23 CEST 2001 by Krzysztof Godlewski -// -// This file is part of the KVirc irc client distribution -// Copyright (C) 1999-2000 Krzysztof Godlewski -// Copyright (C) 1999-2000 Szymon Stefanek (pragma at kvirc dot net) -// -// This program is FREE software. You can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your opinion) any later version. -// -// This program 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 General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program. If not, write to the Free Software Foundation, -// Inc. ,59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -// - - - -#include "class_label.h" -#include "object_macros.h" - -class KviKvsObject_urlabel : public KviKvsObject_label -{ -public: - KVSO_DECLARE_OBJECT(KviKvsObject_urlabel) -public: - QWidget * widget() { return (QWidget *)object(); }; -protected: - virtual bool eventFilter(QObject *, QEvent *); - - bool functionsetUrl(KviKvsObjectFunctionCall *c); - bool functionsetAction(KviKvsObjectFunctionCall *c); - bool functionurl(KviKvsObjectFunctionCall *c); - bool functionaction(KviKvsObjectFunctionCall *c); - bool functionsetText(KviKvsObjectFunctionCall *c); - bool functionsetCursorChange(KviKvsObjectFunctionCall *c); - bool functioncursorChange(KviKvsObjectFunctionCall *c); - bool functionsetUseSingleClick(KviKvsObjectFunctionCall *c); - bool functionuseSingleClick(KviKvsObjectFunctionCall *c); - - QString m_url; - QString m_action; - - QColor m_normalClr; - QColor m_enterClr; - QColor m_activeClr; - - bool m_changeCursor; - bool m_useSingleClick; - - bool m_lastClickWasDbl; - -}; - -#endif // !_CLASS_URLLABEL_H_ diff --git a/src/modules/objects/libkviobjects.cpp b/src/modules/objects/libkviobjects.cpp index 0d278f3a8..5a9881def 100644 --- a/src/modules/objects/libkviobjects.cpp +++ b/src/modules/objects/libkviobjects.cpp @@ -54,7 +54,7 @@ #include "class_tbrowser.h" #include "class_toolbar.h" #include "class_toolbutton.h" -#include "class_urllabel.h" +#include "class_label.h" #include "class_vbox.h" #include "class_widget.h" #include "class_window.h" @@ -96,7 +96,6 @@ static bool objects_module_cleanup(KviModule *m) KviKvsObject_dockwindow::unregisterSelf(); KviKvsObject_wizard::unregisterSelf(); KviKvsObject_window::unregisterSelf(); - KviKvsObject_urlabel::unregisterSelf(); KviKvsObject_toolbutton::unregisterSelf(); KviKvsObject_toolbar::unregisterSelf(); KviKvsObject_tabwidget::unregisterSelf(); @@ -979,7 +978,6 @@ static bool objects_module_init(KviModule * m) KviKvsObject_tabwidget::registerSelf(); KviKvsObject_toolbar::registerSelf(); KviKvsObject_toolbutton::registerSelf(); - KviKvsObject_urlabel::registerSelf(); KviKvsObject_window::registerSelf(); KviKvsObject_wizard::registerSelf(); KviKvsObject_dockwindow::registerSelf(); diff --git a/src/modules/objects/objects.vcproj b/src/modules/objects/objects.vcproj index 02944c770..700b27cab 100755 --- a/src/modules/objects/objects.vcproj +++ b/src/modules/objects/objects.vcproj @@ -1,11 +1,12 @@ <?xml version="1.0" encoding="Windows-1252"?>
<VisualStudioProject
ProjectType="Visual C++"
- Version="8,00"
+ Version="9,00"
Name="objects"
ProjectGUID="{A58E91C7-B9B7-4BBA-A79D-73EDE4C99D62}"
RootNamespace="objects"
Keyword="Win32Proj"
+ TargetFrameworkVersion="131072"
>
<Platforms>
<Platform
@@ -62,7 +63,7 @@ />
<Tool
Name="VCLinkerTool"
- AdditionalDependencies="qt3support4.lib qtcore4.lib qtgui4.lib qtmain.lib kvilib.lib kvirc.lib qtxml4.lib ws2_32.lib"
+ AdditionalDependencies="qt3support4.lib qtcore4.lib qtgui4.lib qtmain.lib kvilib.lib kvirc.lib qtxml4.lib ws2_32.lib qtwebkit4.lib qtnetwork4.lib"
OutputFile="$(OutDir)/kvi$(ProjectName).dll"
LinkIncremental="2"
AdditionalLibraryDirectories=""$(SSLLIBDIR)";"$(PERLDIR)\lib\CORE";"$(QTDIR)\lib";"$(SolutionDir)\win32build\bin";"$(ZLIBLIBDIR)""
@@ -70,6 +71,8 @@ GenerateDebugInformation="true"
ProgramDatabaseFile="$(OutDir)/objects.pdb"
SubSystem="2"
+ RandomizedBaseAddress="1"
+ DataExecutionPrevention="0"
TurnOffAssemblyGeneration="true"
ImportLibrary="$(OutDir)/objects.lib"
TargetMachine="1"
@@ -96,9 +99,6 @@ Name="VCAppVerifierTool"
/>
<Tool
- Name="VCWebDeploymentTool"
- />
- <Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
@@ -135,7 +135,7 @@ EnableFiberSafeOptimizations="true"
WholeProgramOptimization="true"
AdditionalIncludeDirectories=""$(ProjectDir)\..\..\kvirc\module";"$(ProjectDir)\..\..\kvilib\config";"$(QTDIR)\include";"$(ProjectDir)\..\..\kvilib\core";"$(ProjectDir)\..\..\kvilib\system";"$(ProjectDir)\..\..\kvirc\uparser";"$(ProjectDir)\..\..\kvilib\ext";"$(ProjectDir)\..\..\kvirc\kvs";"$(ProjectDir)\..\..\kvirc\ui";"$(ProjectDir)\..\..\kvirc\kernel";"$(ProjectDir)\..\..\kvilib\tal";"$(ProjectDir)\..\..\kvilib\irc";"$(ProjectDir)\..\..\kvilib\file";"$(ProjectDir)\..\..\kvilib\net";"$(QTDIR)\include\Qt3Support";"$(QTDIR)\include\QtCore\";"$(QTDIR)\include\QtGui";"$(QTDIR)\include\Qt";"$(QTDIR)\include\QtNetwork";"$(QTDIR)\include\QtXml";"
- PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;_USRDLL;OBJECTS_EXPORTS;_CRT_SECURE_NO_DEPRECATE;"
+ PreprocessorDefinitions="QT3_SUPPORT;WIN32;NDEBUG;_WINDOWS;_USRDLL;OBJECTS_EXPORTS;_CRT_SECURE_NO_DEPRECATE;"
StringPooling="true"
MinimalRebuild="true"
ExceptionHandling="1"
@@ -156,7 +156,7 @@ />
<Tool
Name="VCLinkerTool"
- AdditionalDependencies="qtmain.lib kvilib.lib kvirc.lib qt3support4.lib qtcore4.lib qtgui4.lib qtxml4.lib ws2_32.lib"
+ AdditionalDependencies="qtmain.lib kvilib.lib kvirc.lib qt3support4.lib qtcore4.lib qtgui4.lib qtxml4.lib ws2_32.lib qtwebkit4.lib"
OutputFile="$(OutDir)/kvi$(ProjectName).dll"
LinkIncremental="1"
AdditionalLibraryDirectories=""$(SSLLIBDIR)";"$(PERLDIR)\lib\CORE";"$(QTDIR)\lib";"$(SolutionDir)\win32build\bin";"$(ZLIBLIBDIR)""
@@ -168,6 +168,8 @@ EnableCOMDATFolding="2"
OptimizeForWindows98="1"
LinkTimeCodeGeneration="1"
+ RandomizedBaseAddress="1"
+ DataExecutionPrevention="0"
TurnOffAssemblyGeneration="true"
ImportLibrary="$(OutDir)/objects.lib"
TargetMachine="1"
@@ -194,9 +196,6 @@ Name="VCAppVerifierTool"
/>
<Tool
- Name="VCWebDeploymentTool"
- />
- <Tool
Name="VCPostBuildEventTool"
/>
</Configuration>
@@ -238,6 +237,10 @@ >
</File>
<File
+ RelativePath=".\class_ftp.cpp"
+ >
+ </File>
+ <File
RelativePath=".\class_groupbox.cpp"
>
</File>
@@ -246,6 +249,10 @@ >
</File>
<File
+ RelativePath=".\class_http.cpp"
+ >
+ </File>
+ <File
RelativePath=".\class_label.cpp"
>
</File>
@@ -342,10 +349,6 @@ >
</File>
<File
- RelativePath=".\class_urllabel.cpp"
- >
- </File>
- <File
RelativePath=".\class_vbox.cpp"
>
</File>
@@ -529,6 +532,19 @@ </FileConfiguration>
</File>
<File
+ RelativePath=".\class_ftp.h"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCustomBuildTool"
+ CommandLine="$(QTDIR)\bin\moc -o "$(InputDir)\m_$(InputName).moc" "$(InputDir)\$(InputFileName)"
"
+ Outputs="$(InputDir)\m_$(InputName).moc"
+ />
+ </FileConfiguration>
+ </File>
+ <File
RelativePath=".\class_groupbox.h"
>
<FileConfiguration
@@ -555,6 +571,19 @@ >
</File>
<File
+ RelativePath=".\class_http.h"
+ >
+ <FileConfiguration
+ Name="Debug|Win32"
+ >
+ <Tool
+ Name="VCCustomBuildTool"
+ CommandLine="$(QTDIR)\bin\moc -o "$(InputDir)\m_$(InputName).moc" "$(InputDir)\$(InputFileName)"
"
+ Outputs="$(InputDir)\m_$(InputName).moc"
+ />
+ </FileConfiguration>
+ </File>
+ <File
RelativePath=".\class_label.h"
>
<FileConfiguration
@@ -1083,28 +1112,6 @@ </FileConfiguration>
</File>
<File
- RelativePath=".\class_urllabel.h"
- >
- <FileConfiguration
- Name="Debug|Win32"
- >
- <Tool
- Name="VCCustomBuildTool"
- CommandLine="$(QTDIR)\bin\moc -o "$(InputDir)\m_$(InputName).moc" "$(InputDir)\$(InputFileName)"
"
- Outputs="$(InputDir)\m_$(InputName).moc"
- />
- </FileConfiguration>
- <FileConfiguration
- Name="Release|Win32"
- >
- <Tool
- Name="VCCustomBuildTool"
- CommandLine="$(QTDIR)\bin\moc -o "$(InputDir)\m_$(InputName).moc" "$(InputDir)\$(InputFileName)"
"
- Outputs="$(InputDir)\m_$(InputName).moc"
- />
- </FileConfiguration>
- </File>
- <File
RelativePath=".\class_vbox.h"
>
</File>
|
