Move mod info frame and handler to MCModInfoFrame, use on all instances
This commit is contained in:
		@@ -215,6 +215,8 @@ gui/LabeledToolButton.h
 | 
			
		||||
gui/LabeledToolButton.cpp
 | 
			
		||||
gui/EditNotesDialog.h
 | 
			
		||||
gui/EditNotesDialog.cpp
 | 
			
		||||
gui/MCModInfoFrame.h
 | 
			
		||||
gui/MCModInfoFrame.cpp
 | 
			
		||||
 | 
			
		||||
# Base classes and infrastructure
 | 
			
		||||
logic/BaseVersion.h
 | 
			
		||||
@@ -334,6 +336,8 @@ gui/IconPickerDialog.ui
 | 
			
		||||
gui/LegacyModEditDialog.ui
 | 
			
		||||
gui/OneSixModEditDialog.ui
 | 
			
		||||
gui/EditNotesDialog.ui
 | 
			
		||||
 | 
			
		||||
gui/MCModInfoFrame.ui
 | 
			
		||||
)
 | 
			
		||||
 | 
			
		||||
set (FILES_TO_TRANSLATE ${FILES_TO_TRANSLATE} ${MULTIMC_SOURCES} ${MULTIMC_UIS})
 | 
			
		||||
 
 | 
			
		||||
@@ -376,3 +376,42 @@ void LegacyModEditDialog::on_loaderWebsite_clicked()
 | 
			
		||||
		return;
 | 
			
		||||
	showWebsiteForMod(this, m_mods->operator[](first));
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void LegacyModEditDialog::on_jarModsTreeView_pressed(const QModelIndex &index)
 | 
			
		||||
{
 | 
			
		||||
	int first, last;
 | 
			
		||||
	auto list = ui->jarModsTreeView->selectionModel()->selectedRows();
 | 
			
		||||
 | 
			
		||||
	if (!lastfirst(list, first, last))
 | 
			
		||||
		return;
 | 
			
		||||
 | 
			
		||||
	Mod &m = m_jarmods->operator[](first);
 | 
			
		||||
 | 
			
		||||
	handleModInfoUpdate(m, ui->jarMIFrame);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void LegacyModEditDialog::on_coreModsTreeView_pressed(const QModelIndex &index)
 | 
			
		||||
{
 | 
			
		||||
	int first, last;
 | 
			
		||||
	auto list = ui->coreModsTreeView->selectionModel()->selectedRows();
 | 
			
		||||
 | 
			
		||||
	if (!lastfirst(list, first, last))
 | 
			
		||||
		return;
 | 
			
		||||
 | 
			
		||||
	Mod &m = m_coremods->operator[](first);
 | 
			
		||||
 | 
			
		||||
	handleModInfoUpdate(m, ui->coreMIFrame);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void LegacyModEditDialog::on_loaderModTreeView_pressed(const QModelIndex &index)
 | 
			
		||||
{
 | 
			
		||||
	int first, last;
 | 
			
		||||
	auto list = ui->loaderModTreeView->selectionModel()->selectedRows();
 | 
			
		||||
 | 
			
		||||
	if (!lastfirst(list, first, last))
 | 
			
		||||
		return;
 | 
			
		||||
 | 
			
		||||
	Mod &m = m_mods->operator[](first);
 | 
			
		||||
 | 
			
		||||
	handleModInfoUpdate(m, ui->loaderMIFrame);
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -60,6 +60,12 @@ slots:
 | 
			
		||||
	// Questionable: SettingsDialog doesn't need this for some reason?
 | 
			
		||||
	void on_buttonBox_rejected();
 | 
			
		||||
 | 
			
		||||
	void on_jarModsTreeView_pressed(const QModelIndex &index);
 | 
			
		||||
 | 
			
		||||
	void on_coreModsTreeView_pressed(const QModelIndex &index);
 | 
			
		||||
 | 
			
		||||
	void on_loaderModTreeView_pressed(const QModelIndex &index);
 | 
			
		||||
 | 
			
		||||
protected:
 | 
			
		||||
	bool eventFilter(QObject *obj, QEvent *ev);
 | 
			
		||||
	bool jarListFilter(QKeyEvent *ev);
 | 
			
		||||
 
 | 
			
		||||
@@ -23,197 +23,218 @@
 | 
			
		||||
      <attribute name="title">
 | 
			
		||||
       <string>Jar Mods</string>
 | 
			
		||||
      </attribute>
 | 
			
		||||
      <layout class="QHBoxLayout" name="horizontalLayout">
 | 
			
		||||
      <layout class="QVBoxLayout" name="verticalLayout_2">
 | 
			
		||||
       <item>
 | 
			
		||||
        <widget class="ModListView" name="jarModsTreeView">
 | 
			
		||||
         <property name="verticalScrollBarPolicy">
 | 
			
		||||
          <enum>Qt::ScrollBarAlwaysOn</enum>
 | 
			
		||||
         </property>
 | 
			
		||||
         <property name="horizontalScrollBarPolicy">
 | 
			
		||||
          <enum>Qt::ScrollBarAlwaysOff</enum>
 | 
			
		||||
         </property>
 | 
			
		||||
        </widget>
 | 
			
		||||
       </item>
 | 
			
		||||
       <item>
 | 
			
		||||
        <layout class="QVBoxLayout" name="jarModsButtonBox">
 | 
			
		||||
        <layout class="QHBoxLayout" name="horizontalLayout">
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="addJarBtn">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>&Add</string>
 | 
			
		||||
          <widget class="ModListView" name="jarModsTreeView">
 | 
			
		||||
           <property name="verticalScrollBarPolicy">
 | 
			
		||||
            <enum>Qt::ScrollBarAlwaysOn</enum>
 | 
			
		||||
           </property>
 | 
			
		||||
           <property name="horizontalScrollBarPolicy">
 | 
			
		||||
            <enum>Qt::ScrollBarAlwaysOff</enum>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="rmJarBtn">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>&Remove</string>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="addForgeBtn">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>MCForge</string>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="jarWebsite">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>Website</string>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <spacer name="jarModsButtonSpacer">
 | 
			
		||||
           <property name="orientation">
 | 
			
		||||
            <enum>Qt::Vertical</enum>
 | 
			
		||||
           </property>
 | 
			
		||||
           <property name="sizeHint" stdset="0">
 | 
			
		||||
            <size>
 | 
			
		||||
             <width>20</width>
 | 
			
		||||
             <height>40</height>
 | 
			
		||||
            </size>
 | 
			
		||||
           </property>
 | 
			
		||||
          </spacer>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="moveJarUpBtn">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>Move &Up</string>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="moveJarDownBtn">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>Move &Down</string>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
          <layout class="QVBoxLayout" name="jarModsButtonBox">
 | 
			
		||||
           <item>
 | 
			
		||||
            <widget class="QPushButton" name="addJarBtn">
 | 
			
		||||
             <property name="text">
 | 
			
		||||
              <string>&Add</string>
 | 
			
		||||
             </property>
 | 
			
		||||
            </widget>
 | 
			
		||||
           </item>
 | 
			
		||||
           <item>
 | 
			
		||||
            <widget class="QPushButton" name="rmJarBtn">
 | 
			
		||||
             <property name="text">
 | 
			
		||||
              <string>&Remove</string>
 | 
			
		||||
             </property>
 | 
			
		||||
            </widget>
 | 
			
		||||
           </item>
 | 
			
		||||
           <item>
 | 
			
		||||
            <widget class="QPushButton" name="addForgeBtn">
 | 
			
		||||
             <property name="text">
 | 
			
		||||
              <string>MCForge</string>
 | 
			
		||||
             </property>
 | 
			
		||||
            </widget>
 | 
			
		||||
           </item>
 | 
			
		||||
           <item>
 | 
			
		||||
            <spacer name="jarModsButtonSpacer">
 | 
			
		||||
             <property name="orientation">
 | 
			
		||||
              <enum>Qt::Vertical</enum>
 | 
			
		||||
             </property>
 | 
			
		||||
             <property name="sizeHint" stdset="0">
 | 
			
		||||
              <size>
 | 
			
		||||
               <width>20</width>
 | 
			
		||||
               <height>40</height>
 | 
			
		||||
              </size>
 | 
			
		||||
             </property>
 | 
			
		||||
            </spacer>
 | 
			
		||||
           </item>
 | 
			
		||||
           <item>
 | 
			
		||||
            <widget class="QPushButton" name="moveJarUpBtn">
 | 
			
		||||
             <property name="text">
 | 
			
		||||
              <string>Move &Up</string>
 | 
			
		||||
             </property>
 | 
			
		||||
            </widget>
 | 
			
		||||
           </item>
 | 
			
		||||
           <item>
 | 
			
		||||
            <widget class="QPushButton" name="moveJarDownBtn">
 | 
			
		||||
             <property name="text">
 | 
			
		||||
              <string>Move &Down</string>
 | 
			
		||||
             </property>
 | 
			
		||||
            </widget>
 | 
			
		||||
           </item>
 | 
			
		||||
          </layout>
 | 
			
		||||
         </item>
 | 
			
		||||
        </layout>
 | 
			
		||||
       </item>
 | 
			
		||||
       <item>
 | 
			
		||||
        <widget class="MCModInfoFrame" name="jarMIFrame">
 | 
			
		||||
         <property name="frameShape">
 | 
			
		||||
          <enum>QFrame::StyledPanel</enum>
 | 
			
		||||
         </property>
 | 
			
		||||
         <property name="frameShadow">
 | 
			
		||||
          <enum>QFrame::Raised</enum>
 | 
			
		||||
         </property>
 | 
			
		||||
        </widget>
 | 
			
		||||
       </item>
 | 
			
		||||
      </layout>
 | 
			
		||||
     </widget>
 | 
			
		||||
     <widget class="QWidget" name="coreTab">
 | 
			
		||||
      <attribute name="title">
 | 
			
		||||
       <string>Core Mods</string>
 | 
			
		||||
      </attribute>
 | 
			
		||||
      <layout class="QHBoxLayout" name="horizontalLayout_3">
 | 
			
		||||
      <layout class="QVBoxLayout" name="verticalLayout_3">
 | 
			
		||||
       <item>
 | 
			
		||||
        <widget class="ModListView" name="coreModsTreeView">
 | 
			
		||||
         <property name="dragDropMode">
 | 
			
		||||
          <enum>QAbstractItemView::DropOnly</enum>
 | 
			
		||||
         </property>
 | 
			
		||||
        </widget>
 | 
			
		||||
       </item>
 | 
			
		||||
       <item>
 | 
			
		||||
        <layout class="QVBoxLayout" name="coreModsButtonBox">
 | 
			
		||||
        <layout class="QHBoxLayout" name="horizontalLayout_3">
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="addCoreBtn">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>&Add</string>
 | 
			
		||||
          <widget class="ModListView" name="coreModsTreeView">
 | 
			
		||||
           <property name="dragDropMode">
 | 
			
		||||
            <enum>QAbstractItemView::DropOnly</enum>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="rmCoreBtn">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>&Remove</string>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="coreWebsite">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>Website</string>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <spacer name="coreModsButtonSpacer">
 | 
			
		||||
           <property name="orientation">
 | 
			
		||||
            <enum>Qt::Vertical</enum>
 | 
			
		||||
           </property>
 | 
			
		||||
           <property name="sizeHint" stdset="0">
 | 
			
		||||
            <size>
 | 
			
		||||
             <width>20</width>
 | 
			
		||||
             <height>40</height>
 | 
			
		||||
            </size>
 | 
			
		||||
           </property>
 | 
			
		||||
          </spacer>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="viewCoreBtn">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>&View Folder</string>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
          <layout class="QVBoxLayout" name="coreModsButtonBox">
 | 
			
		||||
           <item>
 | 
			
		||||
            <widget class="QPushButton" name="addCoreBtn">
 | 
			
		||||
             <property name="text">
 | 
			
		||||
              <string>&Add</string>
 | 
			
		||||
             </property>
 | 
			
		||||
            </widget>
 | 
			
		||||
           </item>
 | 
			
		||||
           <item>
 | 
			
		||||
            <widget class="QPushButton" name="rmCoreBtn">
 | 
			
		||||
             <property name="text">
 | 
			
		||||
              <string>&Remove</string>
 | 
			
		||||
             </property>
 | 
			
		||||
            </widget>
 | 
			
		||||
           </item>
 | 
			
		||||
           <item>
 | 
			
		||||
            <spacer name="coreModsButtonSpacer">
 | 
			
		||||
             <property name="orientation">
 | 
			
		||||
              <enum>Qt::Vertical</enum>
 | 
			
		||||
             </property>
 | 
			
		||||
             <property name="sizeHint" stdset="0">
 | 
			
		||||
              <size>
 | 
			
		||||
               <width>20</width>
 | 
			
		||||
               <height>40</height>
 | 
			
		||||
              </size>
 | 
			
		||||
             </property>
 | 
			
		||||
            </spacer>
 | 
			
		||||
           </item>
 | 
			
		||||
           <item>
 | 
			
		||||
            <widget class="QPushButton" name="viewCoreBtn">
 | 
			
		||||
             <property name="text">
 | 
			
		||||
              <string>&View Folder</string>
 | 
			
		||||
             </property>
 | 
			
		||||
            </widget>
 | 
			
		||||
           </item>
 | 
			
		||||
          </layout>
 | 
			
		||||
         </item>
 | 
			
		||||
        </layout>
 | 
			
		||||
       </item>
 | 
			
		||||
       <item>
 | 
			
		||||
        <widget class="MCModInfoFrame" name="coreMIFrame">
 | 
			
		||||
         <property name="frameShape">
 | 
			
		||||
          <enum>QFrame::StyledPanel</enum>
 | 
			
		||||
         </property>
 | 
			
		||||
         <property name="frameShadow">
 | 
			
		||||
          <enum>QFrame::Raised</enum>
 | 
			
		||||
         </property>
 | 
			
		||||
        </widget>
 | 
			
		||||
       </item>
 | 
			
		||||
      </layout>
 | 
			
		||||
     </widget>
 | 
			
		||||
     <widget class="QWidget" name="modTab">
 | 
			
		||||
      <attribute name="title">
 | 
			
		||||
       <string>Loader Mods</string>
 | 
			
		||||
      </attribute>
 | 
			
		||||
      <layout class="QHBoxLayout" name="horizontalLayout_2">
 | 
			
		||||
      <layout class="QVBoxLayout" name="verticalLayout_4">
 | 
			
		||||
       <item>
 | 
			
		||||
        <widget class="ModListView" name="loaderModTreeView">
 | 
			
		||||
         <property name="acceptDrops">
 | 
			
		||||
          <bool>true</bool>
 | 
			
		||||
         </property>
 | 
			
		||||
         <property name="dragDropMode">
 | 
			
		||||
          <enum>QAbstractItemView::DropOnly</enum>
 | 
			
		||||
         </property>
 | 
			
		||||
        </widget>
 | 
			
		||||
       </item>
 | 
			
		||||
       <item>
 | 
			
		||||
        <layout class="QVBoxLayout" name="mlModsButtonBox">
 | 
			
		||||
        <layout class="QHBoxLayout" name="horizontalLayout_2">
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="addModBtn">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>&Add</string>
 | 
			
		||||
          <widget class="ModListView" name="loaderModTreeView">
 | 
			
		||||
           <property name="acceptDrops">
 | 
			
		||||
            <bool>true</bool>
 | 
			
		||||
           </property>
 | 
			
		||||
           <property name="dragDropMode">
 | 
			
		||||
            <enum>QAbstractItemView::DropOnly</enum>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="rmModBtn">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>&Remove</string>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="loaderWebsite">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>Website</string>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <spacer name="mlModsButtonSpacer">
 | 
			
		||||
           <property name="orientation">
 | 
			
		||||
            <enum>Qt::Vertical</enum>
 | 
			
		||||
           </property>
 | 
			
		||||
           <property name="sizeHint" stdset="0">
 | 
			
		||||
            <size>
 | 
			
		||||
             <width>20</width>
 | 
			
		||||
             <height>40</height>
 | 
			
		||||
            </size>
 | 
			
		||||
           </property>
 | 
			
		||||
          </spacer>
 | 
			
		||||
         </item>
 | 
			
		||||
         <item>
 | 
			
		||||
          <widget class="QPushButton" name="viewModBtn">
 | 
			
		||||
           <property name="text">
 | 
			
		||||
            <string>&View Folder</string>
 | 
			
		||||
           </property>
 | 
			
		||||
          </widget>
 | 
			
		||||
          <layout class="QVBoxLayout" name="mlModsButtonBox">
 | 
			
		||||
           <item>
 | 
			
		||||
            <widget class="QPushButton" name="addModBtn">
 | 
			
		||||
             <property name="text">
 | 
			
		||||
              <string>&Add</string>
 | 
			
		||||
             </property>
 | 
			
		||||
            </widget>
 | 
			
		||||
           </item>
 | 
			
		||||
           <item>
 | 
			
		||||
            <widget class="QPushButton" name="rmModBtn">
 | 
			
		||||
             <property name="text">
 | 
			
		||||
              <string>&Remove</string>
 | 
			
		||||
             </property>
 | 
			
		||||
            </widget>
 | 
			
		||||
           </item>
 | 
			
		||||
           <item>
 | 
			
		||||
            <spacer name="mlModsButtonSpacer">
 | 
			
		||||
             <property name="orientation">
 | 
			
		||||
              <enum>Qt::Vertical</enum>
 | 
			
		||||
             </property>
 | 
			
		||||
             <property name="sizeHint" stdset="0">
 | 
			
		||||
              <size>
 | 
			
		||||
               <width>20</width>
 | 
			
		||||
               <height>40</height>
 | 
			
		||||
              </size>
 | 
			
		||||
             </property>
 | 
			
		||||
            </spacer>
 | 
			
		||||
           </item>
 | 
			
		||||
           <item>
 | 
			
		||||
            <widget class="QPushButton" name="viewModBtn">
 | 
			
		||||
             <property name="text">
 | 
			
		||||
              <string>&View Folder</string>
 | 
			
		||||
             </property>
 | 
			
		||||
            </widget>
 | 
			
		||||
           </item>
 | 
			
		||||
          </layout>
 | 
			
		||||
         </item>
 | 
			
		||||
        </layout>
 | 
			
		||||
       </item>
 | 
			
		||||
       <item>
 | 
			
		||||
        <widget class="MCModInfoFrame" name="loaderMIFrame">
 | 
			
		||||
         <property name="frameShape">
 | 
			
		||||
          <enum>QFrame::StyledPanel</enum>
 | 
			
		||||
         </property>
 | 
			
		||||
         <property name="frameShadow">
 | 
			
		||||
          <enum>QFrame::Raised</enum>
 | 
			
		||||
         </property>
 | 
			
		||||
        </widget>
 | 
			
		||||
       </item>
 | 
			
		||||
      </layout>
 | 
			
		||||
     </widget>
 | 
			
		||||
     <widget class="QWidget" name="texPackTab">
 | 
			
		||||
@@ -291,6 +312,12 @@
 | 
			
		||||
   <extends>QTreeView</extends>
 | 
			
		||||
   <header>gui/ModListView.h</header>
 | 
			
		||||
  </customwidget>
 | 
			
		||||
  <customwidget>
 | 
			
		||||
   <class>MCModInfoFrame</class>
 | 
			
		||||
   <extends>QFrame</extends>
 | 
			
		||||
   <header>gui/MCModInfoFrame.h</header>
 | 
			
		||||
   <container>1</container>
 | 
			
		||||
  </customwidget>
 | 
			
		||||
 </customwidgets>
 | 
			
		||||
 <resources/>
 | 
			
		||||
 <connections/>
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										66
									
								
								gui/MCModInfoFrame.cpp
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										66
									
								
								gui/MCModInfoFrame.cpp
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,66 @@
 | 
			
		||||
#include "MCModInfoFrame.h"
 | 
			
		||||
#include "ui_MCModInfoFrame.h"
 | 
			
		||||
 | 
			
		||||
void handleModInfoUpdate(Mod &m, MCModInfoFrame *frame)
 | 
			
		||||
{
 | 
			
		||||
	QString missing = "<p><span style=\" font-style:italic; color:#4a4a4a;\">Missing from mcmod.info</span></p>";
 | 
			
		||||
 | 
			
		||||
	QString name = m.name();
 | 
			
		||||
	if(name.isEmpty()) name = missing;
 | 
			
		||||
	QString description = m.description();
 | 
			
		||||
	if(description.isEmpty()) description = missing;
 | 
			
		||||
	QString authors = m.authors();
 | 
			
		||||
	if(authors.isEmpty()) authors = missing;
 | 
			
		||||
	QString credits = m.credits();
 | 
			
		||||
	if(credits.isEmpty()) credits = missing;
 | 
			
		||||
	QString website = m.homeurl();
 | 
			
		||||
	if(website.isEmpty()) website = missing;
 | 
			
		||||
	else website = "<a href=\"" + website + "\">" + website + "</a>";
 | 
			
		||||
 | 
			
		||||
	frame->setName("<p><span style=\" font-size:9pt; font-weight:600;\">" + name + "</span></p>");
 | 
			
		||||
	frame->setDescription(description);
 | 
			
		||||
	frame->setAuthors(authors);
 | 
			
		||||
	frame->setCredits(credits);
 | 
			
		||||
	frame->setWebsite(website);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
MCModInfoFrame::MCModInfoFrame(QWidget *parent) :
 | 
			
		||||
	QFrame(parent),
 | 
			
		||||
	ui(new Ui::MCModInfoFrame)
 | 
			
		||||
{
 | 
			
		||||
	ui->setupUi(this);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
MCModInfoFrame::~MCModInfoFrame()
 | 
			
		||||
{
 | 
			
		||||
	delete ui;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void MCModInfoFrame::setName(QString name)
 | 
			
		||||
{
 | 
			
		||||
	ui->label_Name->setText(name);
 | 
			
		||||
	ui->label_Name->setToolTip(name);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void MCModInfoFrame::setDescription(QString description)
 | 
			
		||||
{
 | 
			
		||||
	ui->label_Description->setText(description);
 | 
			
		||||
	ui->label_Description->setToolTip(description);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void MCModInfoFrame::setAuthors(QString authors)
 | 
			
		||||
{
 | 
			
		||||
	ui->label_Authors->setText(authors);
 | 
			
		||||
	ui->label_Authors->setToolTip(authors);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void MCModInfoFrame::setCredits(QString credits)
 | 
			
		||||
{
 | 
			
		||||
	ui->label_Credits->setText(credits);
 | 
			
		||||
	ui->label_Credits->setToolTip(credits);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void MCModInfoFrame::setWebsite(QString website)
 | 
			
		||||
{
 | 
			
		||||
	ui->label_Website->setText(website);
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										32
									
								
								gui/MCModInfoFrame.h
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								gui/MCModInfoFrame.h
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,32 @@
 | 
			
		||||
#ifndef MCMODINFOFRAME_H
 | 
			
		||||
#define MCMODINFOFRAME_H
 | 
			
		||||
 | 
			
		||||
#include <QFrame>
 | 
			
		||||
#include "logic/Mod.h"
 | 
			
		||||
 | 
			
		||||
namespace Ui {
 | 
			
		||||
class MCModInfoFrame;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
class MCModInfoFrame : public QFrame
 | 
			
		||||
{
 | 
			
		||||
	Q_OBJECT
 | 
			
		||||
	
 | 
			
		||||
public:
 | 
			
		||||
	explicit MCModInfoFrame(QWidget *parent = 0);
 | 
			
		||||
	~MCModInfoFrame();
 | 
			
		||||
 | 
			
		||||
	void setName(QString name);
 | 
			
		||||
	void setDescription(QString description);
 | 
			
		||||
	void setAuthors(QString authors);
 | 
			
		||||
	void setCredits(QString credits);
 | 
			
		||||
	void setWebsite(QString website);
 | 
			
		||||
 | 
			
		||||
	
 | 
			
		||||
private:
 | 
			
		||||
	Ui::MCModInfoFrame *ui;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
void handleModInfoUpdate(Mod &m, MCModInfoFrame *frame);
 | 
			
		||||
 | 
			
		||||
#endif // MCMODINFOFRAME_H
 | 
			
		||||
							
								
								
									
										261
									
								
								gui/MCModInfoFrame.ui
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										261
									
								
								gui/MCModInfoFrame.ui
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,261 @@
 | 
			
		||||
<?xml version="1.0" encoding="UTF-8"?>
 | 
			
		||||
<ui version="4.0">
 | 
			
		||||
 <class>MCModInfoFrame</class>
 | 
			
		||||
 <widget class="QFrame" name="MCModInfoFrame">
 | 
			
		||||
  <property name="geometry">
 | 
			
		||||
   <rect>
 | 
			
		||||
    <x>0</x>
 | 
			
		||||
    <y>0</y>
 | 
			
		||||
    <width>571</width>
 | 
			
		||||
    <height>55</height>
 | 
			
		||||
   </rect>
 | 
			
		||||
  </property>
 | 
			
		||||
  <property name="windowTitle">
 | 
			
		||||
   <string>Frame</string>
 | 
			
		||||
  </property>
 | 
			
		||||
  <property name="frameShape">
 | 
			
		||||
   <enum>QFrame::StyledPanel</enum>
 | 
			
		||||
  </property>
 | 
			
		||||
  <property name="frameShadow">
 | 
			
		||||
   <enum>QFrame::Raised</enum>
 | 
			
		||||
  </property>
 | 
			
		||||
  <layout class="QHBoxLayout" name="horizontalLayout">
 | 
			
		||||
   <property name="leftMargin">
 | 
			
		||||
    <number>0</number>
 | 
			
		||||
   </property>
 | 
			
		||||
   <property name="topMargin">
 | 
			
		||||
    <number>0</number>
 | 
			
		||||
   </property>
 | 
			
		||||
   <property name="rightMargin">
 | 
			
		||||
    <number>0</number>
 | 
			
		||||
   </property>
 | 
			
		||||
   <property name="bottomMargin">
 | 
			
		||||
    <number>0</number>
 | 
			
		||||
   </property>
 | 
			
		||||
   <item>
 | 
			
		||||
    <widget class="QFrame" name="frame_2">
 | 
			
		||||
     <property name="sizePolicy">
 | 
			
		||||
      <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
 | 
			
		||||
       <horstretch>0</horstretch>
 | 
			
		||||
       <verstretch>0</verstretch>
 | 
			
		||||
      </sizepolicy>
 | 
			
		||||
     </property>
 | 
			
		||||
     <property name="minimumSize">
 | 
			
		||||
      <size>
 | 
			
		||||
       <width>250</width>
 | 
			
		||||
       <height>0</height>
 | 
			
		||||
      </size>
 | 
			
		||||
     </property>
 | 
			
		||||
     <property name="frameShape">
 | 
			
		||||
      <enum>QFrame::StyledPanel</enum>
 | 
			
		||||
     </property>
 | 
			
		||||
     <property name="frameShadow">
 | 
			
		||||
      <enum>QFrame::Raised</enum>
 | 
			
		||||
     </property>
 | 
			
		||||
     <layout class="QVBoxLayout" name="verticalLayout_5">
 | 
			
		||||
      <property name="spacing">
 | 
			
		||||
       <number>0</number>
 | 
			
		||||
      </property>
 | 
			
		||||
      <property name="leftMargin">
 | 
			
		||||
       <number>0</number>
 | 
			
		||||
      </property>
 | 
			
		||||
      <property name="topMargin">
 | 
			
		||||
       <number>0</number>
 | 
			
		||||
      </property>
 | 
			
		||||
      <property name="rightMargin">
 | 
			
		||||
       <number>9</number>
 | 
			
		||||
      </property>
 | 
			
		||||
      <property name="bottomMargin">
 | 
			
		||||
       <number>0</number>
 | 
			
		||||
      </property>
 | 
			
		||||
      <item>
 | 
			
		||||
       <widget class="QLabel" name="label_Name">
 | 
			
		||||
        <property name="sizePolicy">
 | 
			
		||||
         <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
 | 
			
		||||
          <horstretch>0</horstretch>
 | 
			
		||||
          <verstretch>0</verstretch>
 | 
			
		||||
         </sizepolicy>
 | 
			
		||||
        </property>
 | 
			
		||||
        <property name="minimumSize">
 | 
			
		||||
         <size>
 | 
			
		||||
          <width>250</width>
 | 
			
		||||
          <height>0</height>
 | 
			
		||||
         </size>
 | 
			
		||||
        </property>
 | 
			
		||||
        <property name="maximumSize">
 | 
			
		||||
         <size>
 | 
			
		||||
          <width>16777215</width>
 | 
			
		||||
          <height>92</height>
 | 
			
		||||
         </size>
 | 
			
		||||
        </property>
 | 
			
		||||
        <property name="text">
 | 
			
		||||
         <string><html><head/><body><p><span style=" font-size:9pt; font-weight:600; font-style:italic;">Select a mod to view information...</span></p></body></html></string>
 | 
			
		||||
        </property>
 | 
			
		||||
        <property name="alignment">
 | 
			
		||||
         <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
        </property>
 | 
			
		||||
        <property name="wordWrap">
 | 
			
		||||
         <bool>true</bool>
 | 
			
		||||
        </property>
 | 
			
		||||
       </widget>
 | 
			
		||||
      </item>
 | 
			
		||||
      <item>
 | 
			
		||||
       <widget class="QLabel" name="label_Description">
 | 
			
		||||
        <property name="sizePolicy">
 | 
			
		||||
         <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
 | 
			
		||||
          <horstretch>0</horstretch>
 | 
			
		||||
          <verstretch>0</verstretch>
 | 
			
		||||
         </sizepolicy>
 | 
			
		||||
        </property>
 | 
			
		||||
        <property name="minimumSize">
 | 
			
		||||
         <size>
 | 
			
		||||
          <width>250</width>
 | 
			
		||||
          <height>0</height>
 | 
			
		||||
         </size>
 | 
			
		||||
        </property>
 | 
			
		||||
        <property name="maximumSize">
 | 
			
		||||
         <size>
 | 
			
		||||
          <width>16777215</width>
 | 
			
		||||
          <height>92</height>
 | 
			
		||||
         </size>
 | 
			
		||||
        </property>
 | 
			
		||||
        <property name="text">
 | 
			
		||||
         <string><html><head/><body><p><span style=" font-style:italic;">Mod description</span></p></body></html></string>
 | 
			
		||||
        </property>
 | 
			
		||||
        <property name="alignment">
 | 
			
		||||
         <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
        </property>
 | 
			
		||||
        <property name="wordWrap">
 | 
			
		||||
         <bool>true</bool>
 | 
			
		||||
        </property>
 | 
			
		||||
       </widget>
 | 
			
		||||
      </item>
 | 
			
		||||
     </layout>
 | 
			
		||||
    </widget>
 | 
			
		||||
   </item>
 | 
			
		||||
   <item>
 | 
			
		||||
    <layout class="QFormLayout" name="formLayout">
 | 
			
		||||
     <property name="sizeConstraint">
 | 
			
		||||
      <enum>QLayout::SetDefaultConstraint</enum>
 | 
			
		||||
     </property>
 | 
			
		||||
     <property name="fieldGrowthPolicy">
 | 
			
		||||
      <enum>QFormLayout::AllNonFixedFieldsGrow</enum>
 | 
			
		||||
     </property>
 | 
			
		||||
     <property name="labelAlignment">
 | 
			
		||||
      <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
     </property>
 | 
			
		||||
     <item row="0" column="1">
 | 
			
		||||
      <widget class="QLabel" name="label_Authors">
 | 
			
		||||
       <property name="minimumSize">
 | 
			
		||||
        <size>
 | 
			
		||||
         <width>200</width>
 | 
			
		||||
         <height>0</height>
 | 
			
		||||
        </size>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="maximumSize">
 | 
			
		||||
        <size>
 | 
			
		||||
         <width>16777215</width>
 | 
			
		||||
         <height>92</height>
 | 
			
		||||
        </size>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="text">
 | 
			
		||||
        <string><html><head/><body><p><span style=" font-style:italic; color:#4a4a4a;">Mod authors</span></p></body></html></string>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="alignment">
 | 
			
		||||
        <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="wordWrap">
 | 
			
		||||
        <bool>true</bool>
 | 
			
		||||
       </property>
 | 
			
		||||
      </widget>
 | 
			
		||||
     </item>
 | 
			
		||||
     <item row="1" column="0">
 | 
			
		||||
      <widget class="QLabel" name="label_3">
 | 
			
		||||
       <property name="text">
 | 
			
		||||
        <string>Credits:</string>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="alignment">
 | 
			
		||||
        <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
       </property>
 | 
			
		||||
      </widget>
 | 
			
		||||
     </item>
 | 
			
		||||
     <item row="1" column="1">
 | 
			
		||||
      <widget class="QLabel" name="label_Credits">
 | 
			
		||||
       <property name="minimumSize">
 | 
			
		||||
        <size>
 | 
			
		||||
         <width>200</width>
 | 
			
		||||
         <height>0</height>
 | 
			
		||||
        </size>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="maximumSize">
 | 
			
		||||
        <size>
 | 
			
		||||
         <width>16777215</width>
 | 
			
		||||
         <height>92</height>
 | 
			
		||||
        </size>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="text">
 | 
			
		||||
        <string><html><head/><body><p><span style=" font-style:italic; color:#4a4a4a;">Mod credits</span></p></body></html></string>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="alignment">
 | 
			
		||||
        <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="wordWrap">
 | 
			
		||||
        <bool>true</bool>
 | 
			
		||||
       </property>
 | 
			
		||||
      </widget>
 | 
			
		||||
     </item>
 | 
			
		||||
     <item row="2" column="0">
 | 
			
		||||
      <widget class="QLabel" name="label_4">
 | 
			
		||||
       <property name="text">
 | 
			
		||||
        <string>Website:</string>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="alignment">
 | 
			
		||||
        <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
       </property>
 | 
			
		||||
      </widget>
 | 
			
		||||
     </item>
 | 
			
		||||
     <item row="2" column="1">
 | 
			
		||||
      <widget class="QLabel" name="label_Website">
 | 
			
		||||
       <property name="minimumSize">
 | 
			
		||||
        <size>
 | 
			
		||||
         <width>200</width>
 | 
			
		||||
         <height>0</height>
 | 
			
		||||
        </size>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="maximumSize">
 | 
			
		||||
        <size>
 | 
			
		||||
         <width>16777215</width>
 | 
			
		||||
         <height>92</height>
 | 
			
		||||
        </size>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="text">
 | 
			
		||||
        <string><html><head/><body><p><span style=" font-style:italic; color:#4a4a4a;">Mod website</span></p></body></html></string>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="alignment">
 | 
			
		||||
        <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="wordWrap">
 | 
			
		||||
        <bool>true</bool>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="openExternalLinks">
 | 
			
		||||
        <bool>true</bool>
 | 
			
		||||
       </property>
 | 
			
		||||
      </widget>
 | 
			
		||||
     </item>
 | 
			
		||||
     <item row="0" column="0">
 | 
			
		||||
      <widget class="QLabel" name="label_2">
 | 
			
		||||
       <property name="text">
 | 
			
		||||
        <string>Authors:</string>
 | 
			
		||||
       </property>
 | 
			
		||||
       <property name="alignment">
 | 
			
		||||
        <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
       </property>
 | 
			
		||||
      </widget>
 | 
			
		||||
     </item>
 | 
			
		||||
    </layout>
 | 
			
		||||
   </item>
 | 
			
		||||
  </layout>
 | 
			
		||||
 </widget>
 | 
			
		||||
 <resources/>
 | 
			
		||||
 <connections/>
 | 
			
		||||
</ui>
 | 
			
		||||
@@ -9,4 +9,5 @@ class ModListView: public QTreeView
 | 
			
		||||
public:
 | 
			
		||||
	explicit ModListView ( QWidget* parent = 0 );
 | 
			
		||||
	virtual void setModel ( QAbstractItemModel* model );
 | 
			
		||||
 | 
			
		||||
};
 | 
			
		||||
@@ -308,29 +308,5 @@ void OneSixModEditDialog::on_loaderModTreeView_pressed(const QModelIndex &index)
 | 
			
		||||
 | 
			
		||||
	Mod &m = m_mods->operator[](first);
 | 
			
		||||
 | 
			
		||||
	QString missing = "<p><span style=\" font-style:italic; color:#4a4a4a;\">Missing from mcmod.info</span></p>";
 | 
			
		||||
 | 
			
		||||
	QString name = m.name();
 | 
			
		||||
	if(name.isEmpty()) name = missing;
 | 
			
		||||
	QString description = m.description();
 | 
			
		||||
	if(description.isEmpty()) description = missing;
 | 
			
		||||
	QString authors = m.authors();
 | 
			
		||||
	if(authors.isEmpty()) authors = missing;
 | 
			
		||||
	QString credits = m.credits();
 | 
			
		||||
	if(credits.isEmpty()) credits = missing;
 | 
			
		||||
	QString website = m.homeurl();
 | 
			
		||||
	if(website.isEmpty()) website = missing;
 | 
			
		||||
	else website = "<a href=\"" + website + "\">" + website + "</a>";
 | 
			
		||||
 | 
			
		||||
	ui->label_Name->setText("<p><span style=\" font-size:9pt; font-weight:600;\">" + name + "</span></p>");
 | 
			
		||||
	ui->label_Description->setText(description);
 | 
			
		||||
	ui->label_Authors->setText(authors);
 | 
			
		||||
	ui->label_Credits->setText(credits);
 | 
			
		||||
	ui->label_Website->setText(website);
 | 
			
		||||
 | 
			
		||||
	ui->label_Name->setToolTip("<p><span style=\" font-size:9pt; font-weight:600;\">" + name + "</span></p>");
 | 
			
		||||
	ui->label_Description->setToolTip(description);
 | 
			
		||||
	ui->label_Authors->setToolTip(authors);
 | 
			
		||||
	ui->label_Credits->setToolTip(credits);
 | 
			
		||||
	//ui->label_Website->setToolTip(website);
 | 
			
		||||
	handleModInfoUpdate(m, ui->frame);
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
@@ -221,261 +221,13 @@
 | 
			
		||||
        </layout>
 | 
			
		||||
       </item>
 | 
			
		||||
       <item>
 | 
			
		||||
        <widget class="QFrame" name="frame">
 | 
			
		||||
         <property name="minimumSize">
 | 
			
		||||
          <size>
 | 
			
		||||
           <width>55</width>
 | 
			
		||||
           <height>0</height>
 | 
			
		||||
          </size>
 | 
			
		||||
         </property>
 | 
			
		||||
         <property name="maximumSize">
 | 
			
		||||
          <size>
 | 
			
		||||
           <width>16777215</width>
 | 
			
		||||
           <height>150</height>
 | 
			
		||||
          </size>
 | 
			
		||||
         </property>
 | 
			
		||||
        <widget class="MCModInfoFrame" name="frame">
 | 
			
		||||
         <property name="frameShape">
 | 
			
		||||
          <enum>QFrame::StyledPanel</enum>
 | 
			
		||||
         </property>
 | 
			
		||||
         <property name="frameShadow">
 | 
			
		||||
          <enum>QFrame::Raised</enum>
 | 
			
		||||
         </property>
 | 
			
		||||
         <layout class="QHBoxLayout" name="horizontalLayout_5">
 | 
			
		||||
          <property name="spacing">
 | 
			
		||||
           <number>0</number>
 | 
			
		||||
          </property>
 | 
			
		||||
          <property name="leftMargin">
 | 
			
		||||
           <number>0</number>
 | 
			
		||||
          </property>
 | 
			
		||||
          <property name="topMargin">
 | 
			
		||||
           <number>0</number>
 | 
			
		||||
          </property>
 | 
			
		||||
          <property name="rightMargin">
 | 
			
		||||
           <number>0</number>
 | 
			
		||||
          </property>
 | 
			
		||||
          <property name="bottomMargin">
 | 
			
		||||
           <number>0</number>
 | 
			
		||||
          </property>
 | 
			
		||||
          <item>
 | 
			
		||||
           <widget class="QFrame" name="frame_2">
 | 
			
		||||
            <property name="sizePolicy">
 | 
			
		||||
             <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
 | 
			
		||||
              <horstretch>0</horstretch>
 | 
			
		||||
              <verstretch>0</verstretch>
 | 
			
		||||
             </sizepolicy>
 | 
			
		||||
            </property>
 | 
			
		||||
            <property name="minimumSize">
 | 
			
		||||
             <size>
 | 
			
		||||
              <width>250</width>
 | 
			
		||||
              <height>0</height>
 | 
			
		||||
             </size>
 | 
			
		||||
            </property>
 | 
			
		||||
            <property name="frameShape">
 | 
			
		||||
             <enum>QFrame::StyledPanel</enum>
 | 
			
		||||
            </property>
 | 
			
		||||
            <property name="frameShadow">
 | 
			
		||||
             <enum>QFrame::Raised</enum>
 | 
			
		||||
            </property>
 | 
			
		||||
            <layout class="QVBoxLayout" name="verticalLayout_5">
 | 
			
		||||
             <property name="spacing">
 | 
			
		||||
              <number>0</number>
 | 
			
		||||
             </property>
 | 
			
		||||
             <property name="leftMargin">
 | 
			
		||||
              <number>0</number>
 | 
			
		||||
             </property>
 | 
			
		||||
             <property name="topMargin">
 | 
			
		||||
              <number>0</number>
 | 
			
		||||
             </property>
 | 
			
		||||
             <property name="rightMargin">
 | 
			
		||||
              <number>9</number>
 | 
			
		||||
             </property>
 | 
			
		||||
             <property name="bottomMargin">
 | 
			
		||||
              <number>0</number>
 | 
			
		||||
             </property>
 | 
			
		||||
             <item>
 | 
			
		||||
              <widget class="QLabel" name="label_Name">
 | 
			
		||||
               <property name="sizePolicy">
 | 
			
		||||
                <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
 | 
			
		||||
                 <horstretch>0</horstretch>
 | 
			
		||||
                 <verstretch>0</verstretch>
 | 
			
		||||
                </sizepolicy>
 | 
			
		||||
               </property>
 | 
			
		||||
               <property name="minimumSize">
 | 
			
		||||
                <size>
 | 
			
		||||
                 <width>250</width>
 | 
			
		||||
                 <height>0</height>
 | 
			
		||||
                </size>
 | 
			
		||||
               </property>
 | 
			
		||||
               <property name="maximumSize">
 | 
			
		||||
                <size>
 | 
			
		||||
                 <width>16777215</width>
 | 
			
		||||
                 <height>92</height>
 | 
			
		||||
                </size>
 | 
			
		||||
               </property>
 | 
			
		||||
               <property name="text">
 | 
			
		||||
                <string><html><head/><body><p><span style=" font-size:9pt; font-weight:600; font-style:italic;">Select a mod to view information...</span></p></body></html></string>
 | 
			
		||||
               </property>
 | 
			
		||||
               <property name="alignment">
 | 
			
		||||
                <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
               </property>
 | 
			
		||||
               <property name="wordWrap">
 | 
			
		||||
                <bool>true</bool>
 | 
			
		||||
               </property>
 | 
			
		||||
              </widget>
 | 
			
		||||
             </item>
 | 
			
		||||
             <item>
 | 
			
		||||
              <widget class="QLabel" name="label_Description">
 | 
			
		||||
               <property name="sizePolicy">
 | 
			
		||||
                <sizepolicy hsizetype="Preferred" vsizetype="Preferred">
 | 
			
		||||
                 <horstretch>0</horstretch>
 | 
			
		||||
                 <verstretch>0</verstretch>
 | 
			
		||||
                </sizepolicy>
 | 
			
		||||
               </property>
 | 
			
		||||
               <property name="minimumSize">
 | 
			
		||||
                <size>
 | 
			
		||||
                 <width>250</width>
 | 
			
		||||
                 <height>0</height>
 | 
			
		||||
                </size>
 | 
			
		||||
               </property>
 | 
			
		||||
               <property name="maximumSize">
 | 
			
		||||
                <size>
 | 
			
		||||
                 <width>16777215</width>
 | 
			
		||||
                 <height>92</height>
 | 
			
		||||
                </size>
 | 
			
		||||
               </property>
 | 
			
		||||
               <property name="text">
 | 
			
		||||
                <string><html><head/><body><p><span style=" font-style:italic;">Mod description</span></p></body></html></string>
 | 
			
		||||
               </property>
 | 
			
		||||
               <property name="alignment">
 | 
			
		||||
                <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
               </property>
 | 
			
		||||
               <property name="wordWrap">
 | 
			
		||||
                <bool>true</bool>
 | 
			
		||||
               </property>
 | 
			
		||||
              </widget>
 | 
			
		||||
             </item>
 | 
			
		||||
            </layout>
 | 
			
		||||
           </widget>
 | 
			
		||||
          </item>
 | 
			
		||||
          <item>
 | 
			
		||||
           <layout class="QFormLayout" name="formLayout">
 | 
			
		||||
            <property name="sizeConstraint">
 | 
			
		||||
             <enum>QLayout::SetDefaultConstraint</enum>
 | 
			
		||||
            </property>
 | 
			
		||||
            <property name="fieldGrowthPolicy">
 | 
			
		||||
             <enum>QFormLayout::AllNonFixedFieldsGrow</enum>
 | 
			
		||||
            </property>
 | 
			
		||||
            <item row="0" column="1">
 | 
			
		||||
             <widget class="QLabel" name="label_Authors">
 | 
			
		||||
              <property name="minimumSize">
 | 
			
		||||
               <size>
 | 
			
		||||
                <width>200</width>
 | 
			
		||||
                <height>0</height>
 | 
			
		||||
               </size>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="maximumSize">
 | 
			
		||||
               <size>
 | 
			
		||||
                <width>16777215</width>
 | 
			
		||||
                <height>92</height>
 | 
			
		||||
               </size>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="text">
 | 
			
		||||
               <string><html><head/><body><p><span style=" font-style:italic; color:#4a4a4a;">Mod authors</span></p></body></html></string>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="alignment">
 | 
			
		||||
               <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="wordWrap">
 | 
			
		||||
               <bool>true</bool>
 | 
			
		||||
              </property>
 | 
			
		||||
             </widget>
 | 
			
		||||
            </item>
 | 
			
		||||
            <item row="1" column="0">
 | 
			
		||||
             <widget class="QLabel" name="label_3">
 | 
			
		||||
              <property name="text">
 | 
			
		||||
               <string>Credits:</string>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="alignment">
 | 
			
		||||
               <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
              </property>
 | 
			
		||||
             </widget>
 | 
			
		||||
            </item>
 | 
			
		||||
            <item row="1" column="1">
 | 
			
		||||
             <widget class="QLabel" name="label_Credits">
 | 
			
		||||
              <property name="minimumSize">
 | 
			
		||||
               <size>
 | 
			
		||||
                <width>200</width>
 | 
			
		||||
                <height>0</height>
 | 
			
		||||
               </size>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="maximumSize">
 | 
			
		||||
               <size>
 | 
			
		||||
                <width>16777215</width>
 | 
			
		||||
                <height>92</height>
 | 
			
		||||
               </size>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="text">
 | 
			
		||||
               <string><html><head/><body><p><span style=" font-style:italic; color:#4a4a4a;">Mod credits</span></p></body></html></string>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="alignment">
 | 
			
		||||
               <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="wordWrap">
 | 
			
		||||
               <bool>true</bool>
 | 
			
		||||
              </property>
 | 
			
		||||
             </widget>
 | 
			
		||||
            </item>
 | 
			
		||||
            <item row="2" column="0">
 | 
			
		||||
             <widget class="QLabel" name="label_4">
 | 
			
		||||
              <property name="text">
 | 
			
		||||
               <string>Website:</string>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="alignment">
 | 
			
		||||
               <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
              </property>
 | 
			
		||||
             </widget>
 | 
			
		||||
            </item>
 | 
			
		||||
            <item row="2" column="1">
 | 
			
		||||
             <widget class="QLabel" name="label_Website">
 | 
			
		||||
              <property name="minimumSize">
 | 
			
		||||
               <size>
 | 
			
		||||
                <width>200</width>
 | 
			
		||||
                <height>0</height>
 | 
			
		||||
               </size>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="maximumSize">
 | 
			
		||||
               <size>
 | 
			
		||||
                <width>16777215</width>
 | 
			
		||||
                <height>92</height>
 | 
			
		||||
               </size>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="text">
 | 
			
		||||
               <string><html><head/><body><p><span style=" font-style:italic; color:#4a4a4a;">Mod website</span></p></body></html></string>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="alignment">
 | 
			
		||||
               <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="wordWrap">
 | 
			
		||||
               <bool>true</bool>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="openExternalLinks">
 | 
			
		||||
               <bool>true</bool>
 | 
			
		||||
              </property>
 | 
			
		||||
             </widget>
 | 
			
		||||
            </item>
 | 
			
		||||
            <item row="0" column="0">
 | 
			
		||||
             <widget class="QLabel" name="label_2">
 | 
			
		||||
              <property name="text">
 | 
			
		||||
               <string>Authors:</string>
 | 
			
		||||
              </property>
 | 
			
		||||
              <property name="alignment">
 | 
			
		||||
               <set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
 | 
			
		||||
              </property>
 | 
			
		||||
             </widget>
 | 
			
		||||
            </item>
 | 
			
		||||
           </layout>
 | 
			
		||||
          </item>
 | 
			
		||||
         </layout>
 | 
			
		||||
        </widget>
 | 
			
		||||
       </item>
 | 
			
		||||
      </layout>
 | 
			
		||||
@@ -555,6 +307,12 @@
 | 
			
		||||
   <extends>QTreeView</extends>
 | 
			
		||||
   <header>gui/ModListView.h</header>
 | 
			
		||||
  </customwidget>
 | 
			
		||||
  <customwidget>
 | 
			
		||||
   <class>MCModInfoFrame</class>
 | 
			
		||||
   <extends>QFrame</extends>
 | 
			
		||||
   <header>gui/MCModInfoFrame.h</header>
 | 
			
		||||
   <container>1</container>
 | 
			
		||||
  </customwidget>
 | 
			
		||||
 </customwidgets>
 | 
			
		||||
 <resources/>
 | 
			
		||||
 <connections/>
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user