Bladeren bron

BUG: remove unused files

Steve Pieper 15 jaren geleden
bovenliggende
commit
2eb206b0b8

+ 0 - 88
Libs/DICOM/Widgets/Resources/UI/ctkDICOMCommandWidget.ui

@@ -1,88 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<ui version="4.0">
- <class>ctkDICOMCommandWidget</class>
- <widget class="QWidget" name="ctkDICOMCommandWidget">
-  <property name="geometry">
-   <rect>
-    <x>0</x>
-    <y>0</y>
-    <width>609</width>
-    <height>303</height>
-   </rect>
-  </property>
-  <property name="windowTitle">
-   <string>Form</string>
-  </property>
-  <layout class="QHBoxLayout" name="horizontalLayout_2">
-   <item>
-    <layout class="QHBoxLayout" name="horizontalLayout">
-     <item>
-      <widget class="QLabel" name="label">
-       <property name="text">
-        <string>Retrieve To</string>
-       </property>
-      </widget>
-     </item>
-     <item>
-      <widget class="QComboBox" name="comboBox">
-       <item>
-        <property name="text">
-         <string>Set Directory...</string>
-        </property>
-       </item>
-      </widget>
-     </item>
-     <item>
-      <spacer name="horizontalSpacer">
-       <property name="orientation">
-        <enum>Qt::Horizontal</enum>
-       </property>
-       <property name="sizeHint" stdset="0">
-        <size>
-         <width>40</width>
-         <height>20</height>
-        </size>
-       </property>
-      </spacer>
-     </item>
-     <item>
-      <widget class="QPushButton" name="pushButton">
-       <property name="text">
-        <string>Query</string>
-       </property>
-      </widget>
-     </item>
-     <item>
-      <widget class="QPushButton" name="pushButton_2">
-       <property name="text">
-        <string>Retrieve</string>
-       </property>
-      </widget>
-     </item>
-     <item>
-      <spacer name="horizontalSpacer_2">
-       <property name="orientation">
-        <enum>Qt::Horizontal</enum>
-       </property>
-       <property name="sizeHint" stdset="0">
-        <size>
-         <width>40</width>
-         <height>20</height>
-        </size>
-       </property>
-      </spacer>
-     </item>
-     <item>
-      <widget class="QPushButton" name="pushButton_3">
-       <property name="text">
-        <string>Refresh</string>
-       </property>
-      </widget>
-     </item>
-    </layout>
-   </item>
-  </layout>
- </widget>
- <resources/>
- <connections/>
-</ui>

+ 0 - 54
Libs/DICOM/Widgets/ctkDICOMCommandWidget.cpp

@@ -1,54 +0,0 @@
-/*=========================================================================
-
-  Library:   CTK
- 
-  Copyright (c) 2010  Kitware Inc.
-
-  Licensed under the Apache License, Version 2.0 (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.commontk.org/LICENSE
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
- 
-=========================================================================*/
-
-// ctkDICOMWidgets includes
-#include "ctkDICOMCommandWidget.h"
-#include "ui_ctkDICOMCommandWidget.h"
-
-//----------------------------------------------------------------------------
-class ctkDICOMCommandWidgetPrivate: public ctkPrivate<ctkDICOMCommandWidget>,
-                                    public Ui_ctkDICOMCommandWidget
-{
-public:
-  ctkDICOMCommandWidgetPrivate(){}
-};
-
-//----------------------------------------------------------------------------
-// ctkDICOMCommandWidgetPrivate methods
-
-
-//----------------------------------------------------------------------------
-// ctkDICOMCommandWidget methods
-
-//----------------------------------------------------------------------------
-ctkDICOMCommandWidget::ctkDICOMCommandWidget(QWidget* _parent):Superclass(_parent)
-{
-  CTK_INIT_PRIVATE(ctkDICOMCommandWidget);
-  CTK_D(ctkDICOMCommandWidget);
-  
-  d->setupUi(this);
-}
-
-//----------------------------------------------------------------------------
-ctkDICOMCommandWidget::~ctkDICOMCommandWidget()
-{
-}
-
-

+ 0 - 45
Libs/DICOM/Widgets/ctkDICOMCommandWidget.h

@@ -1,45 +0,0 @@
-/*=========================================================================
-
-  Library:   CTK
- 
-  Copyright (c) 2010  Kitware Inc.
-
-  Licensed under the Apache License, Version 2.0 (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.commontk.org/LICENSE
-
-  Unless required by applicable law or agreed to in writing, software
-  distributed under the License is distributed on an "AS IS" BASIS,
-  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  See the License for the specific language governing permissions and
-  limitations under the License.
- 
-=========================================================================*/
-
-#ifndef __ctkDICOMCommandWidget_h
-#define __ctkDICOMCommandWidget_h
-
-// Qt includes 
-#include <QWidget>
-
-// CTK includes
-#include <ctkPimpl.h>
-
-#include "CTKDICOMWidgetsExport.h"
-
-class ctkDICOMCommandWidgetPrivate; 
-
-class CTK_DICOM_WIDGETS_EXPORT ctkDICOMCommandWidget : public QWidget
-{
-public:
-  typedef QWidget Superclass;
-  explicit ctkDICOMCommandWidget(QWidget* parent=0);
-  virtual ~ctkDICOMCommandWidget();
-
-private:
-  CTK_DECLARE_PRIVATE(ctkDICOMCommandWidget);
-};
-
-#endif