mirror of
https://github.com/tonikelope/megabasterd.git
synced 2025-05-23 18:16:18 +02:00
2.13
This commit is contained in:
parent
2bf460395c
commit
b1083ffff0
@ -92,7 +92,7 @@
|
||||
<Component class="javax.swing.JLabel" name="title_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="48" style="1"/>
|
||||
<Font name="Ubuntu" size="48" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="MegaBasterd X.X"/>
|
||||
<Property name="cursor" type="java.awt.Cursor" editor="org.netbeans.modules.form.editors2.CursorEditor">
|
||||
@ -121,7 +121,7 @@
|
||||
<Component class="javax.swing.JLabel" name="subtitle_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="66" green="66" red="66" type="rgb"/>
|
||||
@ -147,7 +147,7 @@
|
||||
<Component class="javax.swing.JButton" name="mcdown_url_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Copy MegaBasterd download URL"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -159,12 +159,12 @@
|
||||
<Component class="javax.swing.JLabel" name="author_webpage_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="66" green="66" red="66" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="http://t0ni.xyz"/>
|
||||
<Property name="text" type="java.lang.String" value="http://t0ni.world"/>
|
||||
<Property name="cursor" type="java.awt.Cursor" editor="org.netbeans.modules.form.editors2.CursorEditor">
|
||||
<Color id="Cursor de Mano"/>
|
||||
</Property>
|
||||
@ -191,7 +191,7 @@
|
||||
<Component class="javax.swing.JButton" name="check_version_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="14" style="1"/>
|
||||
<Font name="Ubuntu" size="14" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Check version"/>
|
||||
</Properties>
|
||||
|
@ -51,7 +51,7 @@ public final class AboutDialog extends javax.swing.JDialog {
|
||||
setIconImage(null);
|
||||
setResizable(false);
|
||||
|
||||
title_label.setFont(new java.awt.Font("Dialog", 1, 48)); // NOI18N
|
||||
title_label.setFont(new java.awt.Font("Ubuntu", 1, 48)); // NOI18N
|
||||
title_label.setText("MegaBasterd X.X");
|
||||
title_label.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR));
|
||||
title_label.setDoubleBuffered(true);
|
||||
@ -70,7 +70,7 @@ public final class AboutDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
subtitle_label.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
subtitle_label.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
subtitle_label.setForeground(new java.awt.Color(102, 102, 102));
|
||||
subtitle_label.setText("(Made with love by tonikelope)");
|
||||
subtitle_label.setDoubleBuffered(true);
|
||||
@ -84,7 +84,7 @@ public final class AboutDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
mcdown_url_button.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
mcdown_url_button.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
mcdown_url_button.setText("Copy MegaBasterd download URL");
|
||||
mcdown_url_button.setDoubleBuffered(true);
|
||||
mcdown_url_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -93,9 +93,9 @@ public final class AboutDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
author_webpage_label.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
author_webpage_label.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
author_webpage_label.setForeground(new java.awt.Color(102, 102, 102));
|
||||
author_webpage_label.setText("http://t0ni.xyz");
|
||||
author_webpage_label.setText("http://t0ni.world");
|
||||
author_webpage_label.setCursor(new java.awt.Cursor(java.awt.Cursor.HAND_CURSOR));
|
||||
author_webpage_label.setDoubleBuffered(true);
|
||||
author_webpage_label.addMouseListener(new java.awt.event.MouseAdapter() {
|
||||
@ -113,7 +113,7 @@ public final class AboutDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
check_version_button.setFont(new java.awt.Font("Dialog", 1, 14)); // NOI18N
|
||||
check_version_button.setFont(new java.awt.Font("Ubuntu", 1, 14)); // NOI18N
|
||||
check_version_button.setText("Check version");
|
||||
check_version_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
|
@ -35,12 +35,12 @@
|
||||
<EmptySpace max="32767" attributes="0"/>
|
||||
<Component id="keep_temp_checkbox" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace type="unrelated" max="-2" attributes="0"/>
|
||||
<Component id="stop_button" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="stop_button" min="-2" pref="199" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Component id="progress_pbar" alignment="0" max="32767" attributes="0"/>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<Component id="speed_label" min="-2" pref="340" max="-2" attributes="0"/>
|
||||
<EmptySpace pref="73" max="32767" attributes="0"/>
|
||||
<EmptySpace pref="91" max="32767" attributes="0"/>
|
||||
<Component id="pause_button" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="1" attributes="0">
|
||||
@ -57,7 +57,7 @@
|
||||
</Group>
|
||||
<Group type="102" attributes="0">
|
||||
<Component id="file_size_label" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace min="0" pref="503" max="32767" attributes="0"/>
|
||||
<EmptySpace min="0" pref="539" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="1" attributes="0">
|
||||
<EmptySpace min="0" pref="0" max="32767" attributes="0"/>
|
||||
@ -118,7 +118,7 @@
|
||||
<Component class="javax.swing.JLabel" name="status_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="status"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -127,7 +127,7 @@
|
||||
<Component class="javax.swing.JLabel" name="slots_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Slots"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -136,7 +136,7 @@
|
||||
<Component class="javax.swing.JSpinner" name="slots_spinner">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="toolTipText" type="java.lang.String" value="Slots"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -148,7 +148,7 @@
|
||||
<Component class="javax.swing.JLabel" name="speed_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Verdana" size="26" style="3"/>
|
||||
<Font name="Ubuntu" size="26" style="3"/>
|
||||
</Property>
|
||||
<Property name="horizontalAlignment" type="int" value="2"/>
|
||||
<Property name="text" type="java.lang.String" value="speed"/>
|
||||
@ -158,7 +158,7 @@
|
||||
<Component class="javax.swing.JProgressBar" name="progress_pbar">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Verdana" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
</Properties>
|
||||
@ -169,7 +169,7 @@
|
||||
<Color blue="0" green="99" red="ff" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Verdana" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" id="white" palette="1" red="ff" type="palette"/>
|
||||
@ -187,7 +187,7 @@
|
||||
<Color blue="0" green="0" red="ff" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" id="white" palette="1" red="ff" type="palette"/>
|
||||
@ -202,7 +202,7 @@
|
||||
<Component class="javax.swing.JCheckBox" name="keep_temp_checkbox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="selected" type="boolean" value="true"/>
|
||||
<Property name="text" type="java.lang.String" value="Keep temp file"/>
|
||||
@ -212,7 +212,7 @@
|
||||
<Component class="javax.swing.JLabel" name="file_name_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="33" red="33" type="rgb"/>
|
||||
@ -224,7 +224,7 @@
|
||||
<Component class="javax.swing.JButton" name="close_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Close"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -236,7 +236,7 @@
|
||||
<Component class="javax.swing.JButton" name="copy_link_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Copy link"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -251,7 +251,7 @@
|
||||
<Color blue="ff" green="33" red="33" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" red="ff" type="rgb"/>
|
||||
@ -266,7 +266,7 @@
|
||||
<Component class="javax.swing.JLabel" name="file_size_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="33" red="33" type="rgb"/>
|
||||
@ -286,7 +286,7 @@
|
||||
<Component class="javax.swing.JButton" name="open_folder_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Open folder"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
|
@ -126,15 +126,15 @@ public final class DownloadView extends javax.swing.JPanel implements Transferen
|
||||
|
||||
setBorder(new javax.swing.border.LineBorder(new java.awt.Color(153, 204, 255), 4, true));
|
||||
|
||||
status_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
status_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
status_label.setText("status");
|
||||
status_label.setDoubleBuffered(true);
|
||||
|
||||
slots_label.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
slots_label.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
slots_label.setText("Slots");
|
||||
slots_label.setDoubleBuffered(true);
|
||||
|
||||
slots_spinner.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
slots_spinner.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
slots_spinner.setToolTipText("Slots");
|
||||
slots_spinner.setDoubleBuffered(true);
|
||||
slots_spinner.addChangeListener(new javax.swing.event.ChangeListener() {
|
||||
@ -143,16 +143,16 @@ public final class DownloadView extends javax.swing.JPanel implements Transferen
|
||||
}
|
||||
});
|
||||
|
||||
speed_label.setFont(new java.awt.Font("Verdana", 3, 26)); // NOI18N
|
||||
speed_label.setFont(new java.awt.Font("Ubuntu", 3, 26)); // NOI18N
|
||||
speed_label.setHorizontalAlignment(javax.swing.SwingConstants.LEFT);
|
||||
speed_label.setText("speed");
|
||||
speed_label.setDoubleBuffered(true);
|
||||
|
||||
progress_pbar.setFont(new java.awt.Font("Verdana", 1, 18)); // NOI18N
|
||||
progress_pbar.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
progress_pbar.setDoubleBuffered(true);
|
||||
|
||||
pause_button.setBackground(new java.awt.Color(255, 153, 0));
|
||||
pause_button.setFont(new java.awt.Font("Verdana", 1, 16)); // NOI18N
|
||||
pause_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
pause_button.setForeground(java.awt.Color.white);
|
||||
pause_button.setText("PAUSE DOWNLOAD");
|
||||
pause_button.setDoubleBuffered(true);
|
||||
@ -163,7 +163,7 @@ public final class DownloadView extends javax.swing.JPanel implements Transferen
|
||||
});
|
||||
|
||||
stop_button.setBackground(new java.awt.Color(255, 0, 0));
|
||||
stop_button.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
stop_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
stop_button.setForeground(java.awt.Color.white);
|
||||
stop_button.setText("CANCEL DOWNLOAD");
|
||||
stop_button.setDoubleBuffered(true);
|
||||
@ -173,17 +173,17 @@ public final class DownloadView extends javax.swing.JPanel implements Transferen
|
||||
}
|
||||
});
|
||||
|
||||
keep_temp_checkbox.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
keep_temp_checkbox.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
keep_temp_checkbox.setSelected(true);
|
||||
keep_temp_checkbox.setText("Keep temp file");
|
||||
keep_temp_checkbox.setDoubleBuffered(true);
|
||||
|
||||
file_name_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
file_name_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
file_name_label.setForeground(new java.awt.Color(51, 51, 255));
|
||||
file_name_label.setText("file_name");
|
||||
file_name_label.setDoubleBuffered(true);
|
||||
|
||||
close_button.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
close_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
close_button.setText("Close");
|
||||
close_button.setDoubleBuffered(true);
|
||||
close_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -192,7 +192,7 @@ public final class DownloadView extends javax.swing.JPanel implements Transferen
|
||||
}
|
||||
});
|
||||
|
||||
copy_link_button.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
copy_link_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
copy_link_button.setText("Copy link");
|
||||
copy_link_button.setDoubleBuffered(true);
|
||||
copy_link_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -202,7 +202,7 @@ public final class DownloadView extends javax.swing.JPanel implements Transferen
|
||||
});
|
||||
|
||||
restart_button.setBackground(new java.awt.Color(51, 51, 255));
|
||||
restart_button.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
restart_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
restart_button.setForeground(new java.awt.Color(255, 255, 255));
|
||||
restart_button.setText("Restart");
|
||||
restart_button.setDoubleBuffered(true);
|
||||
@ -212,7 +212,7 @@ public final class DownloadView extends javax.swing.JPanel implements Transferen
|
||||
}
|
||||
});
|
||||
|
||||
file_size_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
file_size_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
file_size_label.setForeground(new java.awt.Color(51, 51, 255));
|
||||
file_size_label.setText("file_size");
|
||||
file_size_label.setDoubleBuffered(true);
|
||||
@ -220,7 +220,7 @@ public final class DownloadView extends javax.swing.JPanel implements Transferen
|
||||
slot_status_label.setFont(new java.awt.Font("Dialog", 1, 14)); // NOI18N
|
||||
slot_status_label.setDoubleBuffered(true);
|
||||
|
||||
open_folder_button.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
open_folder_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
open_folder_button.setText("Open folder");
|
||||
open_folder_button.setDoubleBuffered(true);
|
||||
open_folder_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -243,11 +243,11 @@ public final class DownloadView extends javax.swing.JPanel implements Transferen
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addComponent(keep_temp_checkbox)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
||||
.addComponent(stop_button))
|
||||
.addComponent(stop_button, javax.swing.GroupLayout.PREFERRED_SIZE, 199, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||||
.addComponent(progress_pbar, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addGroup(layout.createSequentialGroup()
|
||||
.addComponent(speed_label, javax.swing.GroupLayout.PREFERRED_SIZE, 340, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 73, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 91, Short.MAX_VALUE)
|
||||
.addComponent(pause_button))
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
||||
.addComponent(status_label, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
@ -261,7 +261,7 @@ public final class DownloadView extends javax.swing.JPanel implements Transferen
|
||||
.addComponent(slot_status_label))
|
||||
.addGroup(layout.createSequentialGroup()
|
||||
.addComponent(file_size_label)
|
||||
.addGap(0, 503, Short.MAX_VALUE))
|
||||
.addGap(0, 539, Short.MAX_VALUE))
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
||||
.addGap(0, 0, Short.MAX_VALUE)
|
||||
.addComponent(open_folder_button)
|
||||
|
@ -38,13 +38,13 @@
|
||||
<Component id="skip_button" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
<EmptySpace min="0" pref="121" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="1" attributes="0">
|
||||
<EmptySpace min="0" pref="0" max="32767" attributes="0"/>
|
||||
<Component id="dance_button" min="-2" pref="300" max="-2" attributes="0"/>
|
||||
<EmptySpace min="0" pref="245" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
<Component id="total_file_size_label" alignment="0" max="32767" attributes="0"/>
|
||||
<Group type="102" alignment="1" attributes="0">
|
||||
<EmptySpace min="0" pref="0" max="32767" attributes="0"/>
|
||||
<Component id="dance_button" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
</Group>
|
||||
@ -91,7 +91,7 @@
|
||||
</DimensionLayout>
|
||||
<DimensionLayout dim="1">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Component id="file_tree_scrollpane" alignment="0" pref="215" max="32767" attributes="0"/>
|
||||
<Component id="file_tree_scrollpane" alignment="0" pref="216" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
</Layout>
|
||||
@ -106,7 +106,7 @@
|
||||
<Component class="javax.swing.JTree" name="file_tree">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="0"/>
|
||||
<Font name="Ubuntu" size="20" style="0"/>
|
||||
</Property>
|
||||
<Property name="model" type="javax.swing.tree.TreeModel" editor="org.netbeans.modules.form.editors2.TreeModelEditor">
|
||||
<TreeModel code=""/>
|
||||
@ -175,7 +175,7 @@
|
||||
<Component class="javax.swing.JLabel" name="dir_name_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Upload name:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -185,7 +185,7 @@
|
||||
<Component class="javax.swing.JTextField" name="dir_name_textfield">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="0"/>
|
||||
<Font name="Ubuntu" size="20" style="0"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
<Property name="enabled" type="boolean" value="false"/>
|
||||
@ -194,7 +194,7 @@
|
||||
<Component class="javax.swing.JLabel" name="account_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Account:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -204,7 +204,7 @@
|
||||
<Component class="javax.swing.JComboBox" name="account_combobox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="0"/>
|
||||
</Property>
|
||||
<Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor">
|
||||
<StringArray count="0"/>
|
||||
@ -222,7 +222,7 @@
|
||||
<Component class="javax.swing.JLabel" name="used_space_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Used space: 0.00GB"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -231,7 +231,7 @@
|
||||
<Component class="javax.swing.JButton" name="add_folder_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Add folder"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -244,7 +244,7 @@
|
||||
<Component class="javax.swing.JButton" name="add_files_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Add files"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -262,7 +262,7 @@
|
||||
<Color blue="ff" green="cc" red="66" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="24" style="1"/>
|
||||
<Font name="Ubuntu" size="24" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" red="ff" type="rgb"/>
|
||||
@ -278,7 +278,7 @@
|
||||
<Component class="javax.swing.JLabel" name="total_file_size_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="28" style="1"/>
|
||||
<Font name="Ubuntu" size="28" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="[0 B]"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -288,7 +288,7 @@
|
||||
<Component class="javax.swing.JLabel" name="warning_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="If you DO NOT want to upload some folder or file you can REMOVE it."/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -298,7 +298,7 @@
|
||||
<Component class="javax.swing.JButton" name="skip_rest_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="REMOVE ALL EXCEPT THIS"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -311,7 +311,7 @@
|
||||
<Component class="javax.swing.JButton" name="skip_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="REMOVE THIS"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
|
@ -134,7 +134,7 @@ public final class FileGrabberDialog extends javax.swing.JDialog {
|
||||
|
||||
jPanel1.setBorder(javax.swing.BorderFactory.createTitledBorder("Files"));
|
||||
|
||||
file_tree.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
file_tree.setFont(new java.awt.Font("Ubuntu", 0, 20)); // NOI18N
|
||||
javax.swing.tree.DefaultMutableTreeNode treeNode1 = new javax.swing.tree.DefaultMutableTreeNode("root");
|
||||
file_tree.setModel(new javax.swing.tree.DefaultTreeModel(treeNode1));
|
||||
file_tree.setDoubleBuffered(true);
|
||||
@ -150,24 +150,24 @@ public final class FileGrabberDialog extends javax.swing.JDialog {
|
||||
);
|
||||
jPanel1Layout.setVerticalGroup(
|
||||
jPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addComponent(file_tree_scrollpane, javax.swing.GroupLayout.DEFAULT_SIZE, 215, Short.MAX_VALUE)
|
||||
.addComponent(file_tree_scrollpane, javax.swing.GroupLayout.DEFAULT_SIZE, 216, Short.MAX_VALUE)
|
||||
);
|
||||
|
||||
dir_name_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
dir_name_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
dir_name_label.setText("Upload name:");
|
||||
dir_name_label.setDoubleBuffered(true);
|
||||
dir_name_label.setEnabled(false);
|
||||
|
||||
dir_name_textfield.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
dir_name_textfield.setFont(new java.awt.Font("Ubuntu", 0, 20)); // NOI18N
|
||||
dir_name_textfield.setDoubleBuffered(true);
|
||||
dir_name_textfield.setEnabled(false);
|
||||
|
||||
account_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
account_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
account_label.setText("Account:");
|
||||
account_label.setDoubleBuffered(true);
|
||||
account_label.setEnabled(false);
|
||||
|
||||
account_combobox.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
account_combobox.setFont(new java.awt.Font("Ubuntu", 0, 20)); // NOI18N
|
||||
account_combobox.setDoubleBuffered(true);
|
||||
account_combobox.setEnabled(false);
|
||||
account_combobox.addItemListener(new java.awt.event.ItemListener() {
|
||||
@ -176,11 +176,11 @@ public final class FileGrabberDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
used_space_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
used_space_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
used_space_label.setText("Used space: 0.00GB");
|
||||
used_space_label.setDoubleBuffered(true);
|
||||
|
||||
add_folder_button.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
add_folder_button.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
add_folder_button.setText("Add folder");
|
||||
add_folder_button.setDoubleBuffered(true);
|
||||
add_folder_button.setEnabled(false);
|
||||
@ -190,7 +190,7 @@ public final class FileGrabberDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
add_files_button.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
add_files_button.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
add_files_button.setText("Add files");
|
||||
add_files_button.setDoubleBuffered(true);
|
||||
add_files_button.setEnabled(false);
|
||||
@ -241,7 +241,7 @@ public final class FileGrabberDialog extends javax.swing.JDialog {
|
||||
);
|
||||
|
||||
dance_button.setBackground(new java.awt.Color(102, 204, 255));
|
||||
dance_button.setFont(new java.awt.Font("Dialog", 1, 24)); // NOI18N
|
||||
dance_button.setFont(new java.awt.Font("Ubuntu", 1, 24)); // NOI18N
|
||||
dance_button.setForeground(new java.awt.Color(255, 255, 255));
|
||||
dance_button.setText("Let's dance, baby");
|
||||
dance_button.setDoubleBuffered(true);
|
||||
@ -252,17 +252,17 @@ public final class FileGrabberDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
total_file_size_label.setFont(new java.awt.Font("Dialog", 1, 28)); // NOI18N
|
||||
total_file_size_label.setFont(new java.awt.Font("Ubuntu", 1, 28)); // NOI18N
|
||||
total_file_size_label.setText("[0 B]");
|
||||
total_file_size_label.setDoubleBuffered(true);
|
||||
total_file_size_label.setEnabled(false);
|
||||
|
||||
warning_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
warning_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
warning_label.setText("If you DO NOT want to upload some folder or file you can REMOVE it.");
|
||||
warning_label.setDoubleBuffered(true);
|
||||
warning_label.setEnabled(false);
|
||||
|
||||
skip_rest_button.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
skip_rest_button.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
skip_rest_button.setText("REMOVE ALL EXCEPT THIS");
|
||||
skip_rest_button.setDoubleBuffered(true);
|
||||
skip_rest_button.setEnabled(false);
|
||||
@ -272,7 +272,7 @@ public final class FileGrabberDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
skip_button.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
skip_button.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
skip_button.setText("REMOVE THIS");
|
||||
skip_button.setDoubleBuffered(true);
|
||||
skip_button.setEnabled(false);
|
||||
@ -298,11 +298,11 @@ public final class FileGrabberDialog extends javax.swing.JDialog {
|
||||
.addComponent(skip_rest_button)
|
||||
.addGap(18, 18, 18)
|
||||
.addComponent(skip_button)))
|
||||
.addGap(0, 121, Short.MAX_VALUE))
|
||||
.addGap(0, 245, Short.MAX_VALUE))
|
||||
.addComponent(total_file_size_label, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
||||
.addGap(0, 0, Short.MAX_VALUE)
|
||||
.addComponent(dance_button, javax.swing.GroupLayout.PREFERRED_SIZE, 300, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||||
.addComponent(total_file_size_label, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
|
||||
.addComponent(dance_button)))
|
||||
.addContainerGap())
|
||||
);
|
||||
layout.setVerticalGroup(
|
||||
|
@ -28,25 +28,27 @@
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Component id="file_tree_scrollpane" alignment="0" max="32767" attributes="0"/>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<Component id="skip_rest_button" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace type="separate" max="-2" attributes="0"/>
|
||||
<Component id="skip_button" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace max="32767" attributes="0"/>
|
||||
<Component id="dance_button" min="-2" pref="300" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<Component id="folder_link_label" max="32767" attributes="0"/>
|
||||
<EmptySpace type="unrelated" max="-2" attributes="0"/>
|
||||
<Component id="restore_button" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Component id="total_space_label" alignment="0" max="32767" attributes="0"/>
|
||||
<Group type="102" attributes="0">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<Component id="skip_rest_button" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace type="separate" max="-2" attributes="0"/>
|
||||
<Component id="skip_button" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Component id="link_detected_label" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="warning_label" alignment="0" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<EmptySpace min="0" pref="87" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="1" attributes="0">
|
||||
<EmptySpace min="0" pref="0" max="32767" attributes="0"/>
|
||||
<Component id="dance_button" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="1" attributes="0">
|
||||
<Component id="folder_link_label" max="32767" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="restore_button" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
@ -64,7 +66,7 @@
|
||||
<Component id="restore_button" alignment="3" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="file_tree_scrollpane" pref="368" max="32767" attributes="0"/>
|
||||
<Component id="file_tree_scrollpane" pref="369" max="32767" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="total_space_label" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
@ -98,7 +100,7 @@
|
||||
<Component class="javax.swing.JTree" name="file_tree">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="0"/>
|
||||
<Font name="Ubuntu" size="20" style="0"/>
|
||||
</Property>
|
||||
<Property name="model" type="javax.swing.tree.TreeModel" editor="org.netbeans.modules.form.editors2.TreeModelEditor">
|
||||
<TreeModel code=""/>
|
||||
@ -112,7 +114,7 @@
|
||||
<Component class="javax.swing.JButton" name="skip_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="REMOVE THIS"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -125,7 +127,7 @@
|
||||
<Component class="javax.swing.JLabel" name="link_detected_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="30" style="1"/>
|
||||
<Font name="Ubuntu" size="30" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Folder link detected!"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -137,7 +139,7 @@
|
||||
<Color blue="ff" green="cc" red="66" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="24" style="1"/>
|
||||
<Font name="Ubuntu" size="24" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" red="ff" type="rgb"/>
|
||||
@ -153,7 +155,7 @@
|
||||
<Component class="javax.swing.JLabel" name="folder_link_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="jLabel2"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -162,7 +164,7 @@
|
||||
<Component class="javax.swing.JLabel" name="warning_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="If you DO NOT want to download some folder or file you can REMOVE it."/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -172,7 +174,7 @@
|
||||
<Component class="javax.swing.JButton" name="skip_rest_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="REMOVE ALL EXCEPT THIS"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -185,7 +187,7 @@
|
||||
<Component class="javax.swing.JButton" name="restore_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="14" style="1"/>
|
||||
<Font name="Ubuntu" size="14" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Restore folder data"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -197,7 +199,7 @@
|
||||
<Component class="javax.swing.JLabel" name="total_space_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="28" style="1"/>
|
||||
<Font name="Ubuntu" size="28" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="[0 B]"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
|
@ -101,14 +101,14 @@ public final class FolderLinkDialog extends javax.swing.JDialog {
|
||||
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
|
||||
setTitle("FolderLink");
|
||||
|
||||
file_tree.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
file_tree.setFont(new java.awt.Font("Ubuntu", 0, 20)); // NOI18N
|
||||
javax.swing.tree.DefaultMutableTreeNode treeNode1 = new javax.swing.tree.DefaultMutableTreeNode("root");
|
||||
file_tree.setModel(new javax.swing.tree.DefaultTreeModel(treeNode1));
|
||||
file_tree.setDoubleBuffered(true);
|
||||
file_tree.setEnabled(false);
|
||||
file_tree_scrollpane.setViewportView(file_tree);
|
||||
|
||||
skip_button.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
skip_button.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
skip_button.setText("REMOVE THIS");
|
||||
skip_button.setDoubleBuffered(true);
|
||||
skip_button.setEnabled(false);
|
||||
@ -118,12 +118,12 @@ public final class FolderLinkDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
link_detected_label.setFont(new java.awt.Font("Dialog", 1, 30)); // NOI18N
|
||||
link_detected_label.setFont(new java.awt.Font("Ubuntu", 1, 30)); // NOI18N
|
||||
link_detected_label.setText("Folder link detected!");
|
||||
link_detected_label.setDoubleBuffered(true);
|
||||
|
||||
dance_button.setBackground(new java.awt.Color(102, 204, 255));
|
||||
dance_button.setFont(new java.awt.Font("Dialog", 1, 24)); // NOI18N
|
||||
dance_button.setFont(new java.awt.Font("Ubuntu", 1, 24)); // NOI18N
|
||||
dance_button.setForeground(new java.awt.Color(255, 255, 255));
|
||||
dance_button.setText("Let's dance, baby");
|
||||
dance_button.setDoubleBuffered(true);
|
||||
@ -134,16 +134,16 @@ public final class FolderLinkDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
folder_link_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
folder_link_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
folder_link_label.setText("jLabel2");
|
||||
folder_link_label.setDoubleBuffered(true);
|
||||
|
||||
warning_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
warning_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
warning_label.setText("If you DO NOT want to download some folder or file you can REMOVE it.");
|
||||
warning_label.setDoubleBuffered(true);
|
||||
warning_label.setEnabled(false);
|
||||
|
||||
skip_rest_button.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
skip_rest_button.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
skip_rest_button.setText("REMOVE ALL EXCEPT THIS");
|
||||
skip_rest_button.setDoubleBuffered(true);
|
||||
skip_rest_button.setEnabled(false);
|
||||
@ -153,7 +153,7 @@ public final class FolderLinkDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
restore_button.setFont(new java.awt.Font("Dialog", 1, 14)); // NOI18N
|
||||
restore_button.setFont(new java.awt.Font("Ubuntu", 1, 14)); // NOI18N
|
||||
restore_button.setText("Restore folder data");
|
||||
restore_button.setDoubleBuffered(true);
|
||||
restore_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -162,7 +162,7 @@ public final class FolderLinkDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
total_space_label.setFont(new java.awt.Font("Dialog", 1, 28)); // NOI18N
|
||||
total_space_label.setFont(new java.awt.Font("Ubuntu", 1, 28)); // NOI18N
|
||||
total_space_label.setText("[0 B]");
|
||||
total_space_label.setDoubleBuffered(true);
|
||||
total_space_label.setEnabled(false);
|
||||
@ -175,22 +175,23 @@ public final class FolderLinkDialog extends javax.swing.JDialog {
|
||||
.addContainerGap()
|
||||
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addComponent(file_tree_scrollpane)
|
||||
.addGroup(layout.createSequentialGroup()
|
||||
.addComponent(skip_rest_button)
|
||||
.addGap(18, 18, 18)
|
||||
.addComponent(skip_button)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addComponent(dance_button, javax.swing.GroupLayout.PREFERRED_SIZE, 300, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||||
.addGroup(layout.createSequentialGroup()
|
||||
.addComponent(folder_link_label, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
||||
.addComponent(restore_button))
|
||||
.addComponent(total_space_label, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addGroup(layout.createSequentialGroup()
|
||||
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGroup(layout.createSequentialGroup()
|
||||
.addComponent(skip_rest_button)
|
||||
.addGap(18, 18, 18)
|
||||
.addComponent(skip_button))
|
||||
.addComponent(link_detected_label)
|
||||
.addComponent(warning_label))
|
||||
.addGap(0, 0, Short.MAX_VALUE)))
|
||||
.addGap(0, 87, Short.MAX_VALUE))
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
||||
.addGap(0, 0, Short.MAX_VALUE)
|
||||
.addComponent(dance_button))
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
||||
.addComponent(folder_link_label, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(restore_button)))
|
||||
.addContainerGap())
|
||||
);
|
||||
layout.setVerticalGroup(
|
||||
@ -203,7 +204,7 @@ public final class FolderLinkDialog extends javax.swing.JDialog {
|
||||
.addComponent(folder_link_label)
|
||||
.addComponent(restore_button))
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(file_tree_scrollpane, javax.swing.GroupLayout.DEFAULT_SIZE, 368, Short.MAX_VALUE)
|
||||
.addComponent(file_tree_scrollpane, javax.swing.GroupLayout.DEFAULT_SIZE, 369, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(total_space_label)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
|
@ -83,7 +83,7 @@
|
||||
<Component class="javax.swing.JPasswordField" name="current_pass_textfield">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
</Properties>
|
||||
@ -94,7 +94,7 @@
|
||||
<Component class="javax.swing.JButton" name="cancel_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="CANCEL"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -106,7 +106,7 @@
|
||||
<Component class="javax.swing.JButton" name="ok_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="OK"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -126,7 +126,7 @@
|
||||
<Component class="javax.swing.JLabel" name="please_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="26" style="1"/>
|
||||
<Font name="Ubuntu" size="26" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Please, enter your master password"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -143,7 +143,7 @@
|
||||
<Component class="javax.swing.JCheckBox" name="remember_checkbox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="selected" type="boolean" value="true"/>
|
||||
<Property name="text" type="java.lang.String" value="Remember for this session"/>
|
||||
|
@ -91,7 +91,7 @@ public class GetMasterPasswordDialog extends javax.swing.JDialog {
|
||||
setTitle("MasterPassword");
|
||||
setResizable(false);
|
||||
|
||||
current_pass_textfield.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
current_pass_textfield.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
current_pass_textfield.setDoubleBuffered(true);
|
||||
current_pass_textfield.addKeyListener(new java.awt.event.KeyAdapter() {
|
||||
public void keyPressed(java.awt.event.KeyEvent evt) {
|
||||
@ -99,7 +99,7 @@ public class GetMasterPasswordDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
cancel_button.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
cancel_button.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
cancel_button.setText("CANCEL");
|
||||
cancel_button.setDoubleBuffered(true);
|
||||
cancel_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -108,7 +108,7 @@ public class GetMasterPasswordDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
ok_button.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
ok_button.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
ok_button.setText("OK");
|
||||
ok_button.setDoubleBuffered(true);
|
||||
ok_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -120,14 +120,14 @@ public class GetMasterPasswordDialog extends javax.swing.JDialog {
|
||||
lock_label.setIcon(new javax.swing.ImageIcon(getClass().getResource("/megabasterd/lock_medium.png"))); // NOI18N
|
||||
lock_label.setDoubleBuffered(true);
|
||||
|
||||
please_label.setFont(new java.awt.Font("Dialog", 1, 26)); // NOI18N
|
||||
please_label.setFont(new java.awt.Font("Ubuntu", 1, 26)); // NOI18N
|
||||
please_label.setText("Please, enter your master password");
|
||||
please_label.setDoubleBuffered(true);
|
||||
|
||||
status_label.setFont(new java.awt.Font("Dialog", 1, 14)); // NOI18N
|
||||
status_label.setDoubleBuffered(true);
|
||||
|
||||
remember_checkbox.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
remember_checkbox.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
remember_checkbox.setSelected(true);
|
||||
remember_checkbox.setText("Remember for this session");
|
||||
remember_checkbox.setDoubleBuffered(true);
|
||||
|
@ -34,9 +34,9 @@
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="down_dir_to_label" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="download_dir_label" pref="359" max="32767" attributes="0"/>
|
||||
<EmptySpace type="unrelated" max="-2" attributes="0"/>
|
||||
<Component id="dance_button" min="-2" pref="300" max="-2" attributes="0"/>
|
||||
<Component id="download_dir_label" pref="464" max="32767" attributes="0"/>
|
||||
<EmptySpace min="-2" max="-2" attributes="0"/>
|
||||
<Component id="dance_button" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<Component id="links_label" min="-2" max="-2" attributes="0"/>
|
||||
@ -62,7 +62,7 @@
|
||||
<Component id="dlc_button" alignment="3" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="links_scrollpane" pref="343" max="32767" attributes="0"/>
|
||||
<Component id="links_scrollpane" pref="344" max="32767" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Group type="103" groupAlignment="3" attributes="0">
|
||||
<Component id="use_mega_account_down_label" alignment="3" min="-2" max="-2" attributes="0"/>
|
||||
@ -92,7 +92,7 @@
|
||||
<Properties>
|
||||
<Property name="columns" type="int" value="20"/>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="rows" type="int" value="5"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -109,7 +109,7 @@
|
||||
<Color blue="ff" green="cc" red="66" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="24" style="1"/>
|
||||
<Font name="Ubuntu" size="24" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" red="ff" type="rgb"/>
|
||||
@ -124,7 +124,7 @@
|
||||
<Component class="javax.swing.JLabel" name="links_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Put your MEGA/MegaCrypter/ELC link/s here (one per line):"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -133,7 +133,7 @@
|
||||
<Component class="javax.swing.JButton" name="change_dir_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Change it"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -145,7 +145,7 @@
|
||||
<Component class="javax.swing.JLabel" name="down_dir_to_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Download to: "/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -161,7 +161,7 @@
|
||||
<Component class="javax.swing.JButton" name="dlc_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Load DLC container"/>
|
||||
</Properties>
|
||||
@ -172,7 +172,7 @@
|
||||
<Component class="javax.swing.JLabel" name="use_mega_account_down_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Use this account for download:"/>
|
||||
</Properties>
|
||||
@ -180,7 +180,7 @@
|
||||
<Component class="javax.swing.JComboBox" name="use_mega_account_down_combobox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="0"/>
|
||||
<Font name="Ubuntu" size="16" style="0"/>
|
||||
</Property>
|
||||
<Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor">
|
||||
<StringArray count="0"/>
|
||||
|
@ -119,14 +119,14 @@ public final class LinkGrabberDialog extends javax.swing.JDialog implements Clip
|
||||
setModal(true);
|
||||
|
||||
links_textarea.setColumns(20);
|
||||
links_textarea.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
links_textarea.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
links_textarea.setRows(5);
|
||||
links_textarea.setDoubleBuffered(true);
|
||||
links_scrollpane.setViewportView(links_textarea);
|
||||
links_textarea.addMouseListener(new ContextMenuMouseListener());
|
||||
|
||||
dance_button.setBackground(new java.awt.Color(102, 204, 255));
|
||||
dance_button.setFont(new java.awt.Font("Dialog", 1, 24)); // NOI18N
|
||||
dance_button.setFont(new java.awt.Font("Ubuntu", 1, 24)); // NOI18N
|
||||
dance_button.setForeground(new java.awt.Color(255, 255, 255));
|
||||
dance_button.setText("Let's dance, baby");
|
||||
dance_button.setDoubleBuffered(true);
|
||||
@ -136,11 +136,11 @@ public final class LinkGrabberDialog extends javax.swing.JDialog implements Clip
|
||||
}
|
||||
});
|
||||
|
||||
links_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
links_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
links_label.setText("Put your MEGA/MegaCrypter/ELC link/s here (one per line):");
|
||||
links_label.setDoubleBuffered(true);
|
||||
|
||||
change_dir_button.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
change_dir_button.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
change_dir_button.setText("Change it");
|
||||
change_dir_button.setDoubleBuffered(true);
|
||||
change_dir_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -149,13 +149,13 @@ public final class LinkGrabberDialog extends javax.swing.JDialog implements Clip
|
||||
}
|
||||
});
|
||||
|
||||
down_dir_to_label.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
down_dir_to_label.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
down_dir_to_label.setText("Download to: ");
|
||||
down_dir_to_label.setDoubleBuffered(true);
|
||||
|
||||
download_dir_label.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
|
||||
dlc_button.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
dlc_button.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
dlc_button.setText("Load DLC container");
|
||||
dlc_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
@ -163,10 +163,10 @@ public final class LinkGrabberDialog extends javax.swing.JDialog implements Clip
|
||||
}
|
||||
});
|
||||
|
||||
use_mega_account_down_label.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
use_mega_account_down_label.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
use_mega_account_down_label.setText("Use this account for download:");
|
||||
|
||||
use_mega_account_down_combobox.setFont(new java.awt.Font("Dialog", 0, 16)); // NOI18N
|
||||
use_mega_account_down_combobox.setFont(new java.awt.Font("Ubuntu", 0, 16)); // NOI18N
|
||||
use_mega_account_down_combobox.addItemListener(new java.awt.event.ItemListener() {
|
||||
public void itemStateChanged(java.awt.event.ItemEvent evt) {
|
||||
use_mega_account_down_comboboxItemStateChanged(evt);
|
||||
@ -186,9 +186,9 @@ public final class LinkGrabberDialog extends javax.swing.JDialog implements Clip
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(down_dir_to_label)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(download_dir_label, javax.swing.GroupLayout.DEFAULT_SIZE, 359, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
||||
.addComponent(dance_button, javax.swing.GroupLayout.PREFERRED_SIZE, 300, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||||
.addComponent(download_dir_label, javax.swing.GroupLayout.DEFAULT_SIZE, 464, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(dance_button))
|
||||
.addGroup(layout.createSequentialGroup()
|
||||
.addComponent(links_label)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
@ -207,7 +207,7 @@ public final class LinkGrabberDialog extends javax.swing.JDialog implements Clip
|
||||
.addComponent(links_label)
|
||||
.addComponent(dlc_button))
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(links_scrollpane, javax.swing.GroupLayout.DEFAULT_SIZE, 343, Short.MAX_VALUE)
|
||||
.addComponent(links_scrollpane, javax.swing.GroupLayout.DEFAULT_SIZE, 344, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
||||
.addComponent(use_mega_account_down_label)
|
||||
|
@ -58,7 +58,7 @@ import org.apache.http.auth.UsernamePasswordCredentials;
|
||||
*/
|
||||
public final class MainPanel {
|
||||
|
||||
public static final String VERSION = "2.12";
|
||||
public static final String VERSION = "2.13";
|
||||
public static final int THROTTLE_SLICE_SIZE = 16 * 1024;
|
||||
public static final int STREAMER_PORT = 1337;
|
||||
public static final int WATCHDOG_PORT = 1338;
|
||||
|
@ -9,14 +9,14 @@
|
||||
<Property name="text" type="java.lang.String" value="File"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<SubComponents>
|
||||
<MenuItem class="javax.swing.JMenuItem" name="new_download_menu">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="New download"/>
|
||||
</Properties>
|
||||
@ -27,7 +27,7 @@
|
||||
<MenuItem class="javax.swing.JMenuItem" name="new_upload_menu">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="New upload"/>
|
||||
</Properties>
|
||||
@ -38,7 +38,7 @@
|
||||
<MenuItem class="javax.swing.JMenuItem" name="new_stream_menu">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="New stream"/>
|
||||
</Properties>
|
||||
@ -51,7 +51,7 @@
|
||||
<MenuItem class="javax.swing.JMenuItem" name="clean_all_down_menu">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Remove all pre/pro/wait downloads"/>
|
||||
</Properties>
|
||||
@ -62,7 +62,7 @@
|
||||
<MenuItem class="javax.swing.JMenuItem" name="clean_all_up_menu">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Remove all pre/pro/wait uploads"/>
|
||||
</Properties>
|
||||
@ -75,7 +75,7 @@
|
||||
<MenuItem class="javax.swing.JMenuItem" name="hide_tray_menu">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Hide to tray"/>
|
||||
</Properties>
|
||||
@ -86,7 +86,7 @@
|
||||
<MenuItem class="javax.swing.JMenuItem" name="exit_menu">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="EXIT"/>
|
||||
</Properties>
|
||||
@ -101,14 +101,14 @@
|
||||
<Property name="text" type="java.lang.String" value="Edit"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<SubComponents>
|
||||
<MenuItem class="javax.swing.JMenuItem" name="settings_menu">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Settings"/>
|
||||
</Properties>
|
||||
@ -123,14 +123,14 @@
|
||||
<Property name="text" type="java.lang.String" value="Help"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<SubComponents>
|
||||
<MenuItem class="javax.swing.JMenuItem" name="about_menu">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="About"/>
|
||||
</Properties>
|
||||
@ -207,7 +207,7 @@
|
||||
<Component class="javax.swing.JLabel" name="kiss_server_status">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="14" style="1"/>
|
||||
<Font name="Ubuntu" size="14" style="2"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
</Properties>
|
||||
@ -216,7 +216,7 @@
|
||||
<Properties>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="22" style="1"/>
|
||||
<Font name="Ubuntu" size="22" style="1"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
|
||||
@ -241,7 +241,7 @@
|
||||
</Group>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="status_down_label" pref="657" max="32767" attributes="0"/>
|
||||
<Component id="status_down_label" pref="683" max="32767" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="close_all_finished_down_button" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
@ -258,7 +258,7 @@
|
||||
<Component id="status_down_label" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
<EmptySpace min="-2" max="-2" attributes="0"/>
|
||||
<Component id="jScrollPane_down" pref="314" max="32767" attributes="0"/>
|
||||
<Component id="jScrollPane_down" pref="318" max="32767" attributes="0"/>
|
||||
<EmptySpace type="unrelated" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="down_remtime_label" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" max="-2" attributes="0"/>
|
||||
@ -274,7 +274,7 @@
|
||||
<Component class="javax.swing.JLabel" name="global_speed_down_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="54" style="1"/>
|
||||
<Font name="Ubuntu" size="54" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Speed"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -283,7 +283,7 @@
|
||||
<Component class="javax.swing.JLabel" name="status_down_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="2"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
</Properties>
|
||||
@ -294,7 +294,7 @@
|
||||
<Color blue="33" green="99" red="0" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" red="ff" type="rgb"/>
|
||||
@ -324,7 +324,7 @@
|
||||
<Color blue="0" green="99" red="ff" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" red="ff" type="rgb"/>
|
||||
@ -339,7 +339,7 @@
|
||||
<Component class="javax.swing.JLabel" name="down_remtime_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="DejaVu Sans" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Component>
|
||||
@ -364,7 +364,7 @@
|
||||
</Group>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="status_up_label" pref="657" max="32767" attributes="0"/>
|
||||
<Component id="status_up_label" pref="683" max="32767" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="close_all_finished_up_button" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
@ -381,7 +381,7 @@
|
||||
<Component id="status_up_label" alignment="0" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
<EmptySpace min="-2" max="-2" attributes="0"/>
|
||||
<Component id="jScrollPane_up" pref="314" max="32767" attributes="0"/>
|
||||
<Component id="jScrollPane_up" pref="318" max="32767" attributes="0"/>
|
||||
<EmptySpace type="unrelated" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="up_remtime_label" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" max="-2" attributes="0"/>
|
||||
@ -397,7 +397,7 @@
|
||||
<Component class="javax.swing.JLabel" name="global_speed_up_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="54" style="1"/>
|
||||
<Font name="Ubuntu" size="54" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Speed"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -406,7 +406,7 @@
|
||||
<Component class="javax.swing.JLabel" name="status_up_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="2"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Component>
|
||||
@ -416,7 +416,7 @@
|
||||
<Color blue="33" green="99" red="0" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" red="ff" type="rgb"/>
|
||||
@ -446,7 +446,7 @@
|
||||
<Color blue="0" green="99" red="ff" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" red="ff" type="rgb"/>
|
||||
@ -461,7 +461,7 @@
|
||||
<Component class="javax.swing.JLabel" name="up_remtime_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="DejaVu Sans" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Component>
|
||||
|
@ -186,21 +186,21 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
logo_label.setIcon(new javax.swing.ImageIcon(getClass().getResource("/megabasterd/mbasterd_logo_nuevo.png"))); // NOI18N
|
||||
logo_label.setDoubleBuffered(true);
|
||||
|
||||
kiss_server_status.setFont(new java.awt.Font("Dialog", 1, 14)); // NOI18N
|
||||
kiss_server_status.setFont(new java.awt.Font("Ubuntu", 2, 14)); // NOI18N
|
||||
kiss_server_status.setDoubleBuffered(true);
|
||||
|
||||
jTabbedPane1.setDoubleBuffered(true);
|
||||
jTabbedPane1.setFont(new java.awt.Font("Dialog", 1, 22)); // NOI18N
|
||||
jTabbedPane1.setFont(new java.awt.Font("Ubuntu", 1, 22)); // NOI18N
|
||||
|
||||
global_speed_down_label.setFont(new java.awt.Font("Dialog", 1, 54)); // NOI18N
|
||||
global_speed_down_label.setFont(new java.awt.Font("Ubuntu", 1, 54)); // NOI18N
|
||||
global_speed_down_label.setText("Speed");
|
||||
global_speed_down_label.setDoubleBuffered(true);
|
||||
|
||||
status_down_label.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
status_down_label.setFont(new java.awt.Font("Ubuntu", 2, 16)); // NOI18N
|
||||
status_down_label.setDoubleBuffered(true);
|
||||
|
||||
close_all_finished_down_button.setBackground(new java.awt.Color(0, 153, 51));
|
||||
close_all_finished_down_button.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
close_all_finished_down_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
close_all_finished_down_button.setForeground(new java.awt.Color(255, 255, 255));
|
||||
close_all_finished_down_button.setText("Close all OK finished");
|
||||
close_all_finished_down_button.setDoubleBuffered(true);
|
||||
@ -214,7 +214,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
jScrollPane_down.setViewportView(jPanel_scroll_down);
|
||||
|
||||
pause_all_down_button.setBackground(new java.awt.Color(255, 153, 0));
|
||||
pause_all_down_button.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
pause_all_down_button.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
pause_all_down_button.setForeground(new java.awt.Color(255, 255, 255));
|
||||
pause_all_down_button.setText("PAUSE ALL");
|
||||
pause_all_down_button.setDoubleBuffered(true);
|
||||
@ -224,7 +224,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
}
|
||||
});
|
||||
|
||||
down_remtime_label.setFont(new java.awt.Font("DejaVu Sans", 1, 20)); // NOI18N
|
||||
down_remtime_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
|
||||
javax.swing.GroupLayout downloads_panelLayout = new javax.swing.GroupLayout(downloads_panel);
|
||||
downloads_panel.setLayout(downloads_panelLayout);
|
||||
@ -236,7 +236,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
.addComponent(pause_all_down_button))
|
||||
.addGroup(downloads_panelLayout.createSequentialGroup()
|
||||
.addContainerGap()
|
||||
.addComponent(status_down_label, javax.swing.GroupLayout.DEFAULT_SIZE, 657, Short.MAX_VALUE)
|
||||
.addComponent(status_down_label, javax.swing.GroupLayout.DEFAULT_SIZE, 683, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(close_all_finished_down_button))
|
||||
.addComponent(jScrollPane_down)
|
||||
@ -250,7 +250,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
.addComponent(close_all_finished_down_button, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addComponent(status_down_label, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(jScrollPane_down, javax.swing.GroupLayout.DEFAULT_SIZE, 314, Short.MAX_VALUE)
|
||||
.addComponent(jScrollPane_down, javax.swing.GroupLayout.DEFAULT_SIZE, 318, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
||||
.addComponent(down_remtime_label)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
@ -261,14 +261,14 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
|
||||
jTabbedPane1.addTab("Downloads", downloads_panel);
|
||||
|
||||
global_speed_up_label.setFont(new java.awt.Font("Dialog", 1, 54)); // NOI18N
|
||||
global_speed_up_label.setFont(new java.awt.Font("Ubuntu", 1, 54)); // NOI18N
|
||||
global_speed_up_label.setText("Speed");
|
||||
global_speed_up_label.setDoubleBuffered(true);
|
||||
|
||||
status_up_label.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
status_up_label.setFont(new java.awt.Font("Ubuntu", 2, 16)); // NOI18N
|
||||
|
||||
close_all_finished_up_button.setBackground(new java.awt.Color(0, 153, 51));
|
||||
close_all_finished_up_button.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
close_all_finished_up_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
close_all_finished_up_button.setForeground(new java.awt.Color(255, 255, 255));
|
||||
close_all_finished_up_button.setText("Close all OK finished");
|
||||
close_all_finished_up_button.setDoubleBuffered(true);
|
||||
@ -282,7 +282,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
jScrollPane_up.setViewportView(jPanel_scroll_up);
|
||||
|
||||
pause_all_up_button.setBackground(new java.awt.Color(255, 153, 0));
|
||||
pause_all_up_button.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
pause_all_up_button.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
pause_all_up_button.setForeground(new java.awt.Color(255, 255, 255));
|
||||
pause_all_up_button.setText("PAUSE ALL");
|
||||
pause_all_up_button.setDoubleBuffered(true);
|
||||
@ -292,7 +292,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
}
|
||||
});
|
||||
|
||||
up_remtime_label.setFont(new java.awt.Font("DejaVu Sans", 1, 20)); // NOI18N
|
||||
up_remtime_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
|
||||
javax.swing.GroupLayout uploads_panelLayout = new javax.swing.GroupLayout(uploads_panel);
|
||||
uploads_panel.setLayout(uploads_panelLayout);
|
||||
@ -304,7 +304,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
.addComponent(pause_all_up_button))
|
||||
.addGroup(uploads_panelLayout.createSequentialGroup()
|
||||
.addContainerGap()
|
||||
.addComponent(status_up_label, javax.swing.GroupLayout.DEFAULT_SIZE, 657, Short.MAX_VALUE)
|
||||
.addComponent(status_up_label, javax.swing.GroupLayout.DEFAULT_SIZE, 683, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(close_all_finished_up_button))
|
||||
.addComponent(jScrollPane_up)
|
||||
@ -318,7 +318,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
.addComponent(close_all_finished_up_button, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addComponent(status_up_label, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(jScrollPane_up, javax.swing.GroupLayout.DEFAULT_SIZE, 314, Short.MAX_VALUE)
|
||||
.addComponent(jScrollPane_up, javax.swing.GroupLayout.DEFAULT_SIZE, 318, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
||||
.addComponent(up_remtime_label)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
@ -331,9 +331,9 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
|
||||
file_menu.setText("File");
|
||||
file_menu.setDoubleBuffered(true);
|
||||
file_menu.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
file_menu.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
|
||||
new_download_menu.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
new_download_menu.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
new_download_menu.setText("New download");
|
||||
new_download_menu.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
@ -342,7 +342,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
});
|
||||
file_menu.add(new_download_menu);
|
||||
|
||||
new_upload_menu.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
new_upload_menu.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
new_upload_menu.setText("New upload");
|
||||
new_upload_menu.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
@ -351,7 +351,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
});
|
||||
file_menu.add(new_upload_menu);
|
||||
|
||||
new_stream_menu.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
new_stream_menu.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
new_stream_menu.setText("New stream");
|
||||
new_stream_menu.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
@ -361,7 +361,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
file_menu.add(new_stream_menu);
|
||||
file_menu.add(jSeparator4);
|
||||
|
||||
clean_all_down_menu.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
clean_all_down_menu.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
clean_all_down_menu.setText("Remove all pre/pro/wait downloads");
|
||||
clean_all_down_menu.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
@ -370,7 +370,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
});
|
||||
file_menu.add(clean_all_down_menu);
|
||||
|
||||
clean_all_up_menu.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
clean_all_up_menu.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
clean_all_up_menu.setText("Remove all pre/pro/wait uploads");
|
||||
clean_all_up_menu.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
@ -380,7 +380,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
file_menu.add(clean_all_up_menu);
|
||||
file_menu.add(jSeparator2);
|
||||
|
||||
hide_tray_menu.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
hide_tray_menu.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
hide_tray_menu.setText("Hide to tray");
|
||||
hide_tray_menu.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
@ -389,7 +389,7 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
});
|
||||
file_menu.add(hide_tray_menu);
|
||||
|
||||
exit_menu.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
exit_menu.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
exit_menu.setText("EXIT");
|
||||
exit_menu.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
@ -402,9 +402,9 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
|
||||
edit_menu.setText("Edit");
|
||||
edit_menu.setDoubleBuffered(true);
|
||||
edit_menu.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
edit_menu.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
|
||||
settings_menu.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
settings_menu.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
settings_menu.setText("Settings");
|
||||
settings_menu.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
@ -417,9 +417,9 @@ public final class MainPanelView extends javax.swing.JFrame {
|
||||
|
||||
help_menu.setText("Help");
|
||||
help_menu.setDoubleBuffered(true);
|
||||
help_menu.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
help_menu.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
|
||||
about_menu.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
about_menu.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
about_menu.setText("About");
|
||||
about_menu.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
|
@ -37,7 +37,7 @@
|
||||
</Group>
|
||||
<EmptySpace min="-2" pref="15" max="-2" attributes="0"/>
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Component id="confirm_pass_textfield" pref="418" max="32767" attributes="0"/>
|
||||
<Component id="confirm_pass_textfield" pref="443" max="32767" attributes="0"/>
|
||||
<Component id="new_pass_textfield" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
@ -79,7 +79,7 @@
|
||||
</Group>
|
||||
<EmptySpace min="-2" pref="18" max="-2" attributes="0"/>
|
||||
<Component id="warning_label" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace pref="20" max="32767" attributes="0"/>
|
||||
<EmptySpace pref="21" max="32767" attributes="0"/>
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="103" alignment="1" groupAlignment="3" attributes="0">
|
||||
<Component id="ok_button" alignment="3" min="-2" max="-2" attributes="0"/>
|
||||
@ -96,7 +96,7 @@
|
||||
<Component class="javax.swing.JPasswordField" name="confirm_pass_textfield">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
</Properties>
|
||||
@ -107,7 +107,7 @@
|
||||
<Component class="javax.swing.JLabel" name="confirm_pass_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Confirm new:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -116,7 +116,7 @@
|
||||
<Component class="javax.swing.JButton" name="cancel_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="CANCEL"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -128,7 +128,7 @@
|
||||
<Component class="javax.swing.JButton" name="ok_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="OK"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -148,7 +148,7 @@
|
||||
<Component class="javax.swing.JLabel" name="warning_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="14" style="1"/>
|
||||
<Font name="Ubuntu" size="14" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="WARNING: if you forget this password, you will have to insert all your accounts again."/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -157,7 +157,7 @@
|
||||
<Component class="javax.swing.JLabel" name="new_pass_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="New pass:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -166,7 +166,7 @@
|
||||
<Component class="javax.swing.JPasswordField" name="new_pass_textfield">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
</Properties>
|
||||
|
@ -86,7 +86,7 @@ public class SetMasterPasswordDialog extends javax.swing.JDialog {
|
||||
setTitle("MasterPassword");
|
||||
setResizable(false);
|
||||
|
||||
confirm_pass_textfield.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
confirm_pass_textfield.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
confirm_pass_textfield.setDoubleBuffered(true);
|
||||
confirm_pass_textfield.addKeyListener(new java.awt.event.KeyAdapter() {
|
||||
public void keyPressed(java.awt.event.KeyEvent evt) {
|
||||
@ -94,11 +94,11 @@ public class SetMasterPasswordDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
confirm_pass_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
confirm_pass_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
confirm_pass_label.setText("Confirm new:");
|
||||
confirm_pass_label.setDoubleBuffered(true);
|
||||
|
||||
cancel_button.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
cancel_button.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
cancel_button.setText("CANCEL");
|
||||
cancel_button.setDoubleBuffered(true);
|
||||
cancel_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -107,7 +107,7 @@ public class SetMasterPasswordDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
ok_button.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
ok_button.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
ok_button.setText("OK");
|
||||
ok_button.setDoubleBuffered(true);
|
||||
ok_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -119,15 +119,15 @@ public class SetMasterPasswordDialog extends javax.swing.JDialog {
|
||||
lock_label.setIcon(new javax.swing.ImageIcon(getClass().getResource("/megabasterd/lock_medium.png"))); // NOI18N
|
||||
lock_label.setDoubleBuffered(true);
|
||||
|
||||
warning_label.setFont(new java.awt.Font("Dialog", 1, 14)); // NOI18N
|
||||
warning_label.setFont(new java.awt.Font("Ubuntu", 1, 14)); // NOI18N
|
||||
warning_label.setText("WARNING: if you forget this password, you will have to insert all your accounts again.");
|
||||
warning_label.setDoubleBuffered(true);
|
||||
|
||||
new_pass_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
new_pass_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
new_pass_label.setText("New pass:");
|
||||
new_pass_label.setDoubleBuffered(true);
|
||||
|
||||
new_pass_textfield.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
new_pass_textfield.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
new_pass_textfield.setDoubleBuffered(true);
|
||||
|
||||
status_label.setFont(new java.awt.Font("Dialog", 1, 14)); // NOI18N
|
||||
@ -148,7 +148,7 @@ public class SetMasterPasswordDialog extends javax.swing.JDialog {
|
||||
.addComponent(new_pass_label))
|
||||
.addGap(15, 15, 15)
|
||||
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addComponent(confirm_pass_textfield, javax.swing.GroupLayout.DEFAULT_SIZE, 418, Short.MAX_VALUE)
|
||||
.addComponent(confirm_pass_textfield, javax.swing.GroupLayout.DEFAULT_SIZE, 443, Short.MAX_VALUE)
|
||||
.addComponent(new_pass_textfield))
|
||||
.addContainerGap())
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
||||
@ -178,7 +178,7 @@ public class SetMasterPasswordDialog extends javax.swing.JDialog {
|
||||
.addComponent(confirm_pass_label))))
|
||||
.addGap(18, 18, 18)
|
||||
.addComponent(warning_label)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 20, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 21, Short.MAX_VALUE)
|
||||
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
||||
.addComponent(ok_button)
|
||||
|
@ -61,7 +61,7 @@
|
||||
<Component class="javax.swing.JButton" name="ok_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="22" style="1"/>
|
||||
<Font name="Ubuntu" size="22" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="OK"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -73,7 +73,7 @@
|
||||
<Component class="javax.swing.JButton" name="cancel_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="22" style="1"/>
|
||||
<Font name="Ubuntu" size="22" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="CANCEL"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -86,7 +86,7 @@
|
||||
<Properties>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="22" style="1"/>
|
||||
<Font name="Ubuntu" size="22" style="1"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
|
||||
@ -210,7 +210,7 @@
|
||||
<Component id="use_mega_account_down_combobox" alignment="3" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="use_mega_label" alignment="3" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<EmptySpace pref="90" max="32767" attributes="0"/>
|
||||
<EmptySpace pref="92" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
@ -230,7 +230,7 @@
|
||||
<Component class="javax.swing.JLabel" name="max_downloads_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Max parallel downloads:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -247,7 +247,7 @@
|
||||
<Component class="javax.swing.JCheckBox" name="verify_file_down_checkbox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Verify file integrity (when download is finished)"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -256,7 +256,7 @@
|
||||
<Component class="javax.swing.JLabel" name="down_dir_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Default downloads directory:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -265,7 +265,7 @@
|
||||
<Component class="javax.swing.JButton" name="change_download_dir_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Change it"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -277,7 +277,7 @@
|
||||
<Component class="javax.swing.JLabel" name="default_slots_down_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Default slots per file:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -286,7 +286,7 @@
|
||||
<Component class="javax.swing.JCheckBox" name="multi_slot_down_checkbox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Use multi slot download mode (download restart needed)"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -298,7 +298,7 @@
|
||||
<Component class="javax.swing.JCheckBox" name="limit_download_speed_checkbox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Limit download speed"/>
|
||||
</Properties>
|
||||
@ -309,7 +309,7 @@
|
||||
<Component class="javax.swing.JLabel" name="max_down_speed_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Max speed (KB/s):"/>
|
||||
</Properties>
|
||||
@ -324,7 +324,7 @@
|
||||
<Component class="javax.swing.JLabel" name="default_dir_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Component>
|
||||
@ -339,7 +339,7 @@
|
||||
<Component class="javax.swing.JLabel" name="rec_download_slots_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="DejaVu Sans" size="12" style="0"/>
|
||||
<Font name="Ubuntu" size="12" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Note: it is recommended not to enable MULTI SLOT (unless you want to download +5GB file without PRO account, in which case you will MUST USE multi slot). "/>
|
||||
</Properties>
|
||||
@ -347,7 +347,7 @@
|
||||
<Component class="javax.swing.JCheckBox" name="use_mega_account_down_checkbox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Use MEGA account for download/stream"/>
|
||||
</Properties>
|
||||
@ -358,7 +358,7 @@
|
||||
<Component class="javax.swing.JComboBox" name="use_mega_account_down_combobox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="0"/>
|
||||
<Font name="Ubuntu" size="20" style="0"/>
|
||||
</Property>
|
||||
<Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor">
|
||||
<StringArray count="0"/>
|
||||
@ -373,7 +373,7 @@
|
||||
<Component class="javax.swing.JLabel" name="use_mega_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="DejaVu Sans" size="16" style="0"/>
|
||||
<Font name="Ubuntu" size="16" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Default account:"/>
|
||||
</Properties>
|
||||
@ -422,7 +422,7 @@
|
||||
</Group>
|
||||
<Component id="limit_upload_speed_checkbox" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<EmptySpace min="0" pref="353" max="32767" attributes="0"/>
|
||||
<EmptySpace min="0" pref="451" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
@ -457,7 +457,7 @@
|
||||
<Component id="max_up_speed_label" alignment="3" min="-2" max="-2" attributes="0"/>
|
||||
<Component id="max_up_speed_spinner" alignment="3" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<EmptySpace pref="290" max="32767" attributes="0"/>
|
||||
<EmptySpace pref="312" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
@ -466,7 +466,7 @@
|
||||
<Component class="javax.swing.JLabel" name="default_slots_up_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Default slots per file:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -475,7 +475,7 @@
|
||||
<Component class="javax.swing.JLabel" name="max_uploads_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Max parallel uploads:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -484,7 +484,7 @@
|
||||
<Component class="javax.swing.JSpinner" name="default_slots_up_spinner">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="0"/>
|
||||
<Font name="Ubuntu" size="20" style="0"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
<Property name="value" type="java.lang.Object" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
@ -495,7 +495,7 @@
|
||||
<Component class="javax.swing.JSpinner" name="max_uploads_spinner">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="0"/>
|
||||
<Font name="Ubuntu" size="20" style="0"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
</Properties>
|
||||
@ -503,7 +503,7 @@
|
||||
<Component class="javax.swing.JCheckBox" name="multi_slot_up_checkbox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Use multi slot upload mode (upload restart needed)"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -515,7 +515,7 @@
|
||||
<Component class="javax.swing.JLabel" name="max_up_speed_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Max speed (KB/s):"/>
|
||||
</Properties>
|
||||
@ -523,14 +523,14 @@
|
||||
<Component class="javax.swing.JSpinner" name="max_up_speed_spinner">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="0"/>
|
||||
<Font name="Ubuntu" size="20" style="0"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Component>
|
||||
<Component class="javax.swing.JCheckBox" name="limit_upload_speed_checkbox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Limit upload speed"/>
|
||||
</Properties>
|
||||
@ -545,7 +545,7 @@
|
||||
<Component class="javax.swing.JLabel" name="rec_upload_slots_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="DejaVu Sans" size="16" style="0"/>
|
||||
<Font name="Ubuntu" size="16" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Note: it is recommended to enable MULTI SLOT with 4 slots."/>
|
||||
</Properties>
|
||||
@ -641,7 +641,7 @@
|
||||
<Component class="javax.swing.JTable" name="mega_accounts_table">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="model" type="javax.swing.table.TableModel" editor="org.netbeans.modules.form.editors2.TableModelEditor">
|
||||
<Table columnCount="2" rowCount="0">
|
||||
@ -661,7 +661,7 @@
|
||||
<Component class="javax.swing.JLabel" name="mega_accounts_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Your MEGA accounts:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -670,7 +670,7 @@
|
||||
<Component class="javax.swing.JButton" name="remove_mega_account_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Remove selected"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -683,7 +683,7 @@
|
||||
<Component class="javax.swing.JButton" name="add_mega_account_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Add account"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -695,7 +695,7 @@
|
||||
<Component class="javax.swing.JCheckBox" name="encrypt_pass_checkbox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Encrypt on disk sensitive information"/>
|
||||
</Properties>
|
||||
@ -709,7 +709,7 @@
|
||||
<Color blue="0" green="33" red="ff" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" red="ff" type="rgb"/>
|
||||
@ -726,7 +726,7 @@
|
||||
<Color blue="33" green="99" red="0" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" red="ff" type="rgb"/>
|
||||
@ -740,6 +740,9 @@
|
||||
<Container class="javax.swing.JScrollPane" name="elc_accounts_scrollpane">
|
||||
<Properties>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Ubuntu" size="12" style="0"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
|
||||
<Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/>
|
||||
@ -747,7 +750,7 @@
|
||||
<Component class="javax.swing.JTable" name="elc_accounts_table">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="model" type="javax.swing.table.TableModel" editor="org.netbeans.modules.form.editors2.TableModelEditor">
|
||||
<Table columnCount="3" rowCount="0">
|
||||
@ -764,7 +767,7 @@
|
||||
<Component class="javax.swing.JLabel" name="elc_accounts_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Your ELC accounts:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -773,7 +776,7 @@
|
||||
<Component class="javax.swing.JButton" name="remove_elc_account_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Remove selected"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -786,7 +789,7 @@
|
||||
<Component class="javax.swing.JButton" name="add_elc_account_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Add account"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -821,7 +824,7 @@
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="proxy_panel" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace pref="327" max="32767" attributes="0"/>
|
||||
<EmptySpace pref="329" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
@ -894,7 +897,7 @@
|
||||
<Component class="javax.swing.JLabel" name="proxy_host_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Host:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -904,7 +907,7 @@
|
||||
<Component class="javax.swing.JTextField" name="proxy_host_textfield">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="0"/>
|
||||
<Font name="Ubuntu" size="20" style="0"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
<Property name="enabled" type="boolean" value="false"/>
|
||||
@ -916,7 +919,7 @@
|
||||
<Component class="javax.swing.JLabel" name="proxy_port_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Port:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -926,7 +929,7 @@
|
||||
<Component class="javax.swing.JTextField" name="proxy_port_textfield">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="0"/>
|
||||
<Font name="Ubuntu" size="20" style="0"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
<Property name="enabled" type="boolean" value="false"/>
|
||||
@ -938,7 +941,7 @@
|
||||
<Component class="javax.swing.JCheckBox" name="use_proxy_checkbox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Use HTTP(S) PROXY (app restart required)"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -950,7 +953,7 @@
|
||||
<Component class="javax.swing.JLabel" name="proxy_warning_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="0"/>
|
||||
<Font name="Ubuntu" size="16" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Warning: Megabasterd will use this proxy for ALL connections."/>
|
||||
<Property name="enabled" type="boolean" value="false"/>
|
||||
@ -999,7 +1002,7 @@
|
||||
<Component class="javax.swing.JLabel" name="proxy_user_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Username:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -1009,7 +1012,7 @@
|
||||
<Component class="javax.swing.JTextField" name="proxy_user_textfield">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="0"/>
|
||||
<Font name="Ubuntu" size="20" style="0"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
<Property name="enabled" type="boolean" value="false"/>
|
||||
@ -1021,7 +1024,7 @@
|
||||
<Component class="javax.swing.JLabel" name="proxy_pass_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Password:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -1031,7 +1034,7 @@
|
||||
<Component class="javax.swing.JPasswordField" name="proxy_pass_textfield">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="0"/>
|
||||
<Font name="Ubuntu" size="20" style="0"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="jPasswordField1"/>
|
||||
<Property name="enabled" type="boolean" value="false"/>
|
||||
|
@ -498,7 +498,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
setTitle("Settings");
|
||||
setResizable(false);
|
||||
|
||||
ok_button.setFont(new java.awt.Font("Dialog", 1, 22)); // NOI18N
|
||||
ok_button.setFont(new java.awt.Font("Ubuntu", 1, 22)); // NOI18N
|
||||
ok_button.setText("OK");
|
||||
ok_button.setDoubleBuffered(true);
|
||||
ok_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -507,7 +507,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
cancel_button.setFont(new java.awt.Font("Dialog", 1, 22)); // NOI18N
|
||||
cancel_button.setFont(new java.awt.Font("Ubuntu", 1, 22)); // NOI18N
|
||||
cancel_button.setText("CANCEL");
|
||||
cancel_button.setDoubleBuffered(true);
|
||||
cancel_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -517,28 +517,28 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
});
|
||||
|
||||
jTabbedPane1.setDoubleBuffered(true);
|
||||
jTabbedPane1.setFont(new java.awt.Font("Dialog", 1, 22)); // NOI18N
|
||||
jTabbedPane1.setFont(new java.awt.Font("Ubuntu", 1, 22)); // NOI18N
|
||||
|
||||
default_slots_down_spinner.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
default_slots_down_spinner.setDoubleBuffered(true);
|
||||
default_slots_down_spinner.setValue(2);
|
||||
|
||||
max_downloads_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
max_downloads_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
max_downloads_label.setText("Max parallel downloads:");
|
||||
max_downloads_label.setDoubleBuffered(true);
|
||||
|
||||
max_downloads_spinner.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
max_downloads_spinner.setDoubleBuffered(true);
|
||||
|
||||
verify_file_down_checkbox.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
verify_file_down_checkbox.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
verify_file_down_checkbox.setText("Verify file integrity (when download is finished)");
|
||||
verify_file_down_checkbox.setDoubleBuffered(true);
|
||||
|
||||
down_dir_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
down_dir_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
down_dir_label.setText("Default downloads directory:");
|
||||
down_dir_label.setDoubleBuffered(true);
|
||||
|
||||
change_download_dir_button.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
change_download_dir_button.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
change_download_dir_button.setText("Change it");
|
||||
change_download_dir_button.setDoubleBuffered(true);
|
||||
change_download_dir_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -547,11 +547,11 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
default_slots_down_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
default_slots_down_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
default_slots_down_label.setText("Default slots per file:");
|
||||
default_slots_down_label.setDoubleBuffered(true);
|
||||
|
||||
multi_slot_down_checkbox.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
multi_slot_down_checkbox.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
multi_slot_down_checkbox.setText("Use multi slot download mode (download restart needed)");
|
||||
multi_slot_down_checkbox.setDoubleBuffered(true);
|
||||
multi_slot_down_checkbox.addChangeListener(new javax.swing.event.ChangeListener() {
|
||||
@ -560,7 +560,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
limit_download_speed_checkbox.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
limit_download_speed_checkbox.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
limit_download_speed_checkbox.setText("Limit download speed");
|
||||
limit_download_speed_checkbox.addChangeListener(new javax.swing.event.ChangeListener() {
|
||||
public void stateChanged(javax.swing.event.ChangeEvent evt) {
|
||||
@ -568,17 +568,17 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
max_down_speed_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
max_down_speed_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
max_down_speed_label.setText("Max speed (KB/s):");
|
||||
|
||||
max_down_speed_spinner.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
|
||||
default_dir_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
default_dir_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
|
||||
rec_download_slots_label.setFont(new java.awt.Font("DejaVu Sans", 0, 12)); // NOI18N
|
||||
rec_download_slots_label.setFont(new java.awt.Font("Ubuntu", 0, 12)); // NOI18N
|
||||
rec_download_slots_label.setText("Note: it is recommended not to enable MULTI SLOT (unless you want to download +5GB file without PRO account, in which case you will MUST USE multi slot). ");
|
||||
|
||||
use_mega_account_down_checkbox.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
use_mega_account_down_checkbox.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
use_mega_account_down_checkbox.setText("Use MEGA account for download/stream");
|
||||
use_mega_account_down_checkbox.addChangeListener(new javax.swing.event.ChangeListener() {
|
||||
public void stateChanged(javax.swing.event.ChangeEvent evt) {
|
||||
@ -586,9 +586,9 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
use_mega_account_down_combobox.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
use_mega_account_down_combobox.setFont(new java.awt.Font("Ubuntu", 0, 20)); // NOI18N
|
||||
|
||||
use_mega_label.setFont(new java.awt.Font("DejaVu Sans", 0, 16)); // NOI18N
|
||||
use_mega_label.setFont(new java.awt.Font("Ubuntu", 0, 16)); // NOI18N
|
||||
use_mega_label.setText("Default account:");
|
||||
|
||||
javax.swing.GroupLayout downloads_panelLayout = new javax.swing.GroupLayout(downloads_panel);
|
||||
@ -683,27 +683,27 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
.addGroup(downloads_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
||||
.addComponent(use_mega_account_down_combobox, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addComponent(use_mega_label))
|
||||
.addContainerGap(90, Short.MAX_VALUE))
|
||||
.addContainerGap(92, Short.MAX_VALUE))
|
||||
);
|
||||
|
||||
jTabbedPane1.addTab("Downloads", downloads_panel);
|
||||
|
||||
default_slots_up_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
default_slots_up_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
default_slots_up_label.setText("Default slots per file:");
|
||||
default_slots_up_label.setDoubleBuffered(true);
|
||||
|
||||
max_uploads_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
max_uploads_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
max_uploads_label.setText("Max parallel uploads:");
|
||||
max_uploads_label.setDoubleBuffered(true);
|
||||
|
||||
default_slots_up_spinner.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
default_slots_up_spinner.setFont(new java.awt.Font("Ubuntu", 0, 20)); // NOI18N
|
||||
default_slots_up_spinner.setDoubleBuffered(true);
|
||||
default_slots_up_spinner.setValue(2);
|
||||
|
||||
max_uploads_spinner.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
max_uploads_spinner.setFont(new java.awt.Font("Ubuntu", 0, 20)); // NOI18N
|
||||
max_uploads_spinner.setDoubleBuffered(true);
|
||||
|
||||
multi_slot_up_checkbox.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
multi_slot_up_checkbox.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
multi_slot_up_checkbox.setText("Use multi slot upload mode (upload restart needed)");
|
||||
multi_slot_up_checkbox.setDoubleBuffered(true);
|
||||
multi_slot_up_checkbox.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -712,12 +712,12 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
max_up_speed_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
max_up_speed_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
max_up_speed_label.setText("Max speed (KB/s):");
|
||||
|
||||
max_up_speed_spinner.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
max_up_speed_spinner.setFont(new java.awt.Font("Ubuntu", 0, 20)); // NOI18N
|
||||
|
||||
limit_upload_speed_checkbox.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
limit_upload_speed_checkbox.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
limit_upload_speed_checkbox.setText("Limit upload speed");
|
||||
limit_upload_speed_checkbox.addChangeListener(new javax.swing.event.ChangeListener() {
|
||||
public void stateChanged(javax.swing.event.ChangeEvent evt) {
|
||||
@ -725,7 +725,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
rec_upload_slots_label.setFont(new java.awt.Font("DejaVu Sans", 0, 16)); // NOI18N
|
||||
rec_upload_slots_label.setFont(new java.awt.Font("Ubuntu", 0, 16)); // NOI18N
|
||||
rec_upload_slots_label.setText("Note: it is recommended to enable MULTI SLOT with 4 slots.");
|
||||
|
||||
javax.swing.GroupLayout uploads_panelLayout = new javax.swing.GroupLayout(uploads_panel);
|
||||
@ -757,7 +757,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
.addGap(98, 98, 98)
|
||||
.addComponent(max_up_speed_spinner, javax.swing.GroupLayout.PREFERRED_SIZE, 100, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||||
.addComponent(limit_upload_speed_checkbox))
|
||||
.addGap(0, 353, Short.MAX_VALUE)))
|
||||
.addGap(0, 451, Short.MAX_VALUE)))
|
||||
.addContainerGap())
|
||||
);
|
||||
uploads_panelLayout.setVerticalGroup(
|
||||
@ -785,12 +785,12 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
.addGroup(uploads_panelLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
|
||||
.addComponent(max_up_speed_label)
|
||||
.addComponent(max_up_speed_spinner, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||||
.addContainerGap(290, Short.MAX_VALUE))
|
||||
.addContainerGap(312, Short.MAX_VALUE))
|
||||
);
|
||||
|
||||
jTabbedPane1.addTab("Uploads", uploads_panel);
|
||||
|
||||
mega_accounts_table.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
mega_accounts_table.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
mega_accounts_table.setModel(new javax.swing.table.DefaultTableModel(
|
||||
new Object [][] {
|
||||
|
||||
@ -812,11 +812,11 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
mega_accounts_table.setRowHeight(24);
|
||||
mega_accounts_scrollpane.setViewportView(mega_accounts_table);
|
||||
|
||||
mega_accounts_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
mega_accounts_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
mega_accounts_label.setText("Your MEGA accounts:");
|
||||
mega_accounts_label.setDoubleBuffered(true);
|
||||
|
||||
remove_mega_account_button.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
remove_mega_account_button.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
remove_mega_account_button.setText("Remove selected");
|
||||
remove_mega_account_button.setDoubleBuffered(true);
|
||||
remove_mega_account_button.setEnabled(false);
|
||||
@ -826,7 +826,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
add_mega_account_button.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
add_mega_account_button.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
add_mega_account_button.setText("Add account");
|
||||
add_mega_account_button.setDoubleBuffered(true);
|
||||
add_mega_account_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -835,7 +835,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
encrypt_pass_checkbox.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
encrypt_pass_checkbox.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
encrypt_pass_checkbox.setText("Encrypt on disk sensitive information");
|
||||
encrypt_pass_checkbox.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
@ -844,7 +844,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
});
|
||||
|
||||
delete_all_accounts_button.setBackground(new java.awt.Color(255, 51, 0));
|
||||
delete_all_accounts_button.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
delete_all_accounts_button.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
delete_all_accounts_button.setForeground(new java.awt.Color(255, 255, 255));
|
||||
delete_all_accounts_button.setText("RESET ACCOUNTS");
|
||||
delete_all_accounts_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -854,7 +854,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
});
|
||||
|
||||
unlock_accounts_button.setBackground(new java.awt.Color(0, 153, 51));
|
||||
unlock_accounts_button.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
unlock_accounts_button.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
unlock_accounts_button.setForeground(new java.awt.Color(255, 255, 255));
|
||||
unlock_accounts_button.setText("Unlock accounts");
|
||||
unlock_accounts_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -864,8 +864,9 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
});
|
||||
|
||||
elc_accounts_scrollpane.setDoubleBuffered(true);
|
||||
elc_accounts_scrollpane.setFont(new java.awt.Font("Ubuntu", 0, 12)); // NOI18N
|
||||
|
||||
elc_accounts_table.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
elc_accounts_table.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
elc_accounts_table.setModel(new javax.swing.table.DefaultTableModel(
|
||||
new Object [][] {
|
||||
|
||||
@ -885,11 +886,11 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
elc_accounts_table.setRowHeight(24);
|
||||
elc_accounts_scrollpane.setViewportView(elc_accounts_table);
|
||||
|
||||
elc_accounts_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
elc_accounts_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
elc_accounts_label.setText("Your ELC accounts:");
|
||||
elc_accounts_label.setDoubleBuffered(true);
|
||||
|
||||
remove_elc_account_button.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
remove_elc_account_button.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
remove_elc_account_button.setText("Remove selected");
|
||||
remove_elc_account_button.setDoubleBuffered(true);
|
||||
remove_elc_account_button.setEnabled(false);
|
||||
@ -899,7 +900,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
add_elc_account_button.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
add_elc_account_button.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
add_elc_account_button.setText("Add account");
|
||||
add_elc_account_button.setDoubleBuffered(true);
|
||||
add_elc_account_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -969,27 +970,27 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
|
||||
proxy_panel.setBorder(javax.swing.BorderFactory.createTitledBorder("Proxy settings"));
|
||||
|
||||
proxy_host_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
proxy_host_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
proxy_host_label.setText("Host:");
|
||||
proxy_host_label.setDoubleBuffered(true);
|
||||
proxy_host_label.setEnabled(false);
|
||||
|
||||
proxy_host_textfield.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
proxy_host_textfield.setFont(new java.awt.Font("Ubuntu", 0, 20)); // NOI18N
|
||||
proxy_host_textfield.setDoubleBuffered(true);
|
||||
proxy_host_textfield.setEnabled(false);
|
||||
proxy_host_textfield.addMouseListener(new ContextMenuMouseListener());
|
||||
|
||||
proxy_port_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
proxy_port_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
proxy_port_label.setText("Port:");
|
||||
proxy_port_label.setDoubleBuffered(true);
|
||||
proxy_port_label.setEnabled(false);
|
||||
|
||||
proxy_port_textfield.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
proxy_port_textfield.setFont(new java.awt.Font("Ubuntu", 0, 20)); // NOI18N
|
||||
proxy_port_textfield.setDoubleBuffered(true);
|
||||
proxy_port_textfield.setEnabled(false);
|
||||
proxy_port_textfield.addMouseListener(new ContextMenuMouseListener());
|
||||
|
||||
use_proxy_checkbox.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
use_proxy_checkbox.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
use_proxy_checkbox.setText("Use HTTP(S) PROXY (app restart required)");
|
||||
use_proxy_checkbox.setDoubleBuffered(true);
|
||||
use_proxy_checkbox.addChangeListener(new javax.swing.event.ChangeListener() {
|
||||
@ -998,28 +999,28 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
}
|
||||
});
|
||||
|
||||
proxy_warning_label.setFont(new java.awt.Font("Dialog", 0, 16)); // NOI18N
|
||||
proxy_warning_label.setFont(new java.awt.Font("Ubuntu", 0, 16)); // NOI18N
|
||||
proxy_warning_label.setText("Warning: Megabasterd will use this proxy for ALL connections.");
|
||||
proxy_warning_label.setEnabled(false);
|
||||
|
||||
proxy_auth_panel.setBorder(javax.swing.BorderFactory.createTitledBorder("Authentication"));
|
||||
|
||||
proxy_user_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
proxy_user_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
proxy_user_label.setText("Username:");
|
||||
proxy_user_label.setDoubleBuffered(true);
|
||||
proxy_user_label.setEnabled(false);
|
||||
|
||||
proxy_user_textfield.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
proxy_user_textfield.setFont(new java.awt.Font("Ubuntu", 0, 20)); // NOI18N
|
||||
proxy_user_textfield.setDoubleBuffered(true);
|
||||
proxy_user_textfield.setEnabled(false);
|
||||
proxy_user_textfield.addMouseListener(new ContextMenuMouseListener());
|
||||
|
||||
proxy_pass_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
proxy_pass_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
proxy_pass_label.setText("Password:");
|
||||
proxy_pass_label.setDoubleBuffered(true);
|
||||
proxy_pass_label.setEnabled(false);
|
||||
|
||||
proxy_pass_textfield.setFont(new java.awt.Font("Dialog", 0, 20)); // NOI18N
|
||||
proxy_pass_textfield.setFont(new java.awt.Font("Ubuntu", 0, 20)); // NOI18N
|
||||
proxy_pass_textfield.setText("jPasswordField1");
|
||||
proxy_pass_textfield.setEnabled(false);
|
||||
|
||||
@ -1107,7 +1108,7 @@ public final class SettingsDialog extends javax.swing.JDialog {
|
||||
.addGroup(jPanel1Layout.createSequentialGroup()
|
||||
.addContainerGap()
|
||||
.addComponent(proxy_panel, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addContainerGap(327, Short.MAX_VALUE))
|
||||
.addContainerGap(329, Short.MAX_VALUE))
|
||||
);
|
||||
|
||||
jTabbedPane1.addTab("Advanced", jPanel1);
|
||||
|
@ -31,8 +31,8 @@
|
||||
<Component id="use_mega_account_down_label" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="use_mega_account_down_combobox" max="32767" attributes="0"/>
|
||||
<EmptySpace type="separate" max="-2" attributes="0"/>
|
||||
<Component id="dance_button" min="-2" pref="300" max="-2" attributes="0"/>
|
||||
<EmptySpace type="unrelated" max="-2" attributes="0"/>
|
||||
<Component id="dance_button" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Component id="original_link_textfield" max="32767" attributes="0"/>
|
||||
<Component id="put_label" alignment="0" pref="1076" max="32767" attributes="0"/>
|
||||
@ -63,7 +63,7 @@
|
||||
<Component class="javax.swing.JLabel" name="put_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Put your MEGA/MegaCrypter/ELC link here in order to get a streaming link:"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -75,7 +75,7 @@
|
||||
<Color blue="ff" green="cc" red="66" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="24" style="1"/>
|
||||
<Font name="Ubuntu" size="24" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" red="ff" type="rgb"/>
|
||||
@ -90,7 +90,7 @@
|
||||
<Component class="javax.swing.JTextField" name="original_link_textfield">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="0"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
</Properties>
|
||||
@ -101,7 +101,7 @@
|
||||
<Component class="javax.swing.JLabel" name="use_mega_account_down_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Use this account for streaming:"/>
|
||||
</Properties>
|
||||
@ -109,7 +109,7 @@
|
||||
<Component class="javax.swing.JComboBox" name="use_mega_account_down_combobox">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="model" type="javax.swing.ComboBoxModel" editor="org.netbeans.modules.form.editors2.ComboBoxModelEditor">
|
||||
<StringArray count="0"/>
|
||||
|
@ -95,12 +95,12 @@ public final class StreamerDialog extends javax.swing.JDialog implements Clipboa
|
||||
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
|
||||
setTitle("Streamer");
|
||||
|
||||
put_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
put_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
put_label.setText("Put your MEGA/MegaCrypter/ELC link here in order to get a streaming link:");
|
||||
put_label.setDoubleBuffered(true);
|
||||
|
||||
dance_button.setBackground(new java.awt.Color(102, 204, 255));
|
||||
dance_button.setFont(new java.awt.Font("Dialog", 1, 24)); // NOI18N
|
||||
dance_button.setFont(new java.awt.Font("Ubuntu", 1, 24)); // NOI18N
|
||||
dance_button.setForeground(new java.awt.Color(255, 255, 255));
|
||||
dance_button.setText("Let's dance, baby");
|
||||
dance_button.setDoubleBuffered(true);
|
||||
@ -110,13 +110,13 @@ public final class StreamerDialog extends javax.swing.JDialog implements Clipboa
|
||||
}
|
||||
});
|
||||
|
||||
original_link_textfield.setFont(new java.awt.Font("Dialog", 0, 18)); // NOI18N
|
||||
original_link_textfield.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
original_link_textfield.setDoubleBuffered(true);
|
||||
|
||||
use_mega_account_down_label.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
use_mega_account_down_label.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
use_mega_account_down_label.setText("Use this account for streaming:");
|
||||
|
||||
use_mega_account_down_combobox.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
use_mega_account_down_combobox.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
use_mega_account_down_combobox.addItemListener(new java.awt.event.ItemListener() {
|
||||
public void itemStateChanged(java.awt.event.ItemEvent evt) {
|
||||
use_mega_account_down_comboboxItemStateChanged(evt);
|
||||
@ -134,8 +134,8 @@ public final class StreamerDialog extends javax.swing.JDialog implements Clipboa
|
||||
.addComponent(use_mega_account_down_label)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(use_mega_account_down_combobox, 0, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addGap(18, 18, 18)
|
||||
.addComponent(dance_button, javax.swing.GroupLayout.PREFERRED_SIZE, 300, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
||||
.addComponent(dance_button))
|
||||
.addComponent(original_link_textfield)
|
||||
.addComponent(put_label, javax.swing.GroupLayout.DEFAULT_SIZE, 1076, Short.MAX_VALUE))
|
||||
.addContainerGap())
|
||||
|
@ -38,7 +38,7 @@
|
||||
<Component id="progress_pbar" alignment="0" max="32767" attributes="0"/>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<Component id="speed_label" min="-2" pref="340" max="-2" attributes="0"/>
|
||||
<EmptySpace pref="106" max="32767" attributes="0"/>
|
||||
<EmptySpace pref="121" max="32767" attributes="0"/>
|
||||
<Component id="pause_button" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="1" attributes="0">
|
||||
@ -107,7 +107,7 @@
|
||||
<Component class="javax.swing.JLabel" name="status_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="status"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -116,7 +116,7 @@
|
||||
<Component class="javax.swing.JLabel" name="slots_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Slots"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -125,7 +125,7 @@
|
||||
<Component class="javax.swing.JSpinner" name="slots_spinner">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="0"/>
|
||||
</Property>
|
||||
<Property name="toolTipText" type="java.lang.String" value="Slots"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -137,7 +137,7 @@
|
||||
<Component class="javax.swing.JLabel" name="speed_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Verdana" size="26" style="3"/>
|
||||
<Font name="Ubuntu" size="26" style="3"/>
|
||||
</Property>
|
||||
<Property name="horizontalAlignment" type="int" value="2"/>
|
||||
<Property name="text" type="java.lang.String" value="speed"/>
|
||||
@ -147,7 +147,7 @@
|
||||
<Component class="javax.swing.JProgressBar" name="progress_pbar">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Verdana" size="18" style="1"/>
|
||||
<Font name="Ubuntu" size="18" style="1"/>
|
||||
</Property>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
</Properties>
|
||||
@ -158,7 +158,7 @@
|
||||
<Color blue="0" green="99" red="ff" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Verdana" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" id="white" palette="1" red="ff" type="palette"/>
|
||||
@ -176,7 +176,7 @@
|
||||
<Color blue="0" green="0" red="ff" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" id="white" palette="1" red="ff" type="palette"/>
|
||||
@ -191,7 +191,7 @@
|
||||
<Component class="javax.swing.JLabel" name="file_name_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="33" red="33" type="rgb"/>
|
||||
@ -203,7 +203,7 @@
|
||||
<Component class="javax.swing.JButton" name="close_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Close"/>
|
||||
<Property name="doubleBuffered" type="boolean" value="true"/>
|
||||
@ -218,7 +218,7 @@
|
||||
<Color blue="ff" green="33" red="33" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="ff" red="ff" type="rgb"/>
|
||||
@ -233,7 +233,7 @@
|
||||
<Component class="javax.swing.JLabel" name="file_size_label">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="20" style="1"/>
|
||||
<Font name="Ubuntu" size="20" style="1"/>
|
||||
</Property>
|
||||
<Property name="foreground" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="ff" green="33" red="33" type="rgb"/>
|
||||
@ -253,7 +253,7 @@
|
||||
<Component class="javax.swing.JButton" name="folder_link_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Copy folder link"/>
|
||||
</Properties>
|
||||
@ -264,7 +264,7 @@
|
||||
<Component class="javax.swing.JButton" name="file_link_button">
|
||||
<Properties>
|
||||
<Property name="font" type="java.awt.Font" editor="org.netbeans.beaninfo.editors.FontEditor">
|
||||
<Font name="Dialog" size="16" style="1"/>
|
||||
<Font name="Ubuntu" size="16" style="1"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Copy file link"/>
|
||||
<Property name="enabled" type="boolean" value="false"/>
|
||||
|
@ -115,15 +115,15 @@ public final class UploadView extends javax.swing.JPanel implements Transference
|
||||
|
||||
setBorder(new javax.swing.border.LineBorder(new java.awt.Color(153, 204, 255), 4, true));
|
||||
|
||||
status_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
status_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
status_label.setText("status");
|
||||
status_label.setDoubleBuffered(true);
|
||||
|
||||
slots_label.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
slots_label.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
slots_label.setText("Slots");
|
||||
slots_label.setDoubleBuffered(true);
|
||||
|
||||
slots_spinner.setFont(new java.awt.Font("Dialog", 1, 18)); // NOI18N
|
||||
slots_spinner.setFont(new java.awt.Font("Ubuntu", 0, 18)); // NOI18N
|
||||
slots_spinner.setToolTipText("Slots");
|
||||
slots_spinner.setDoubleBuffered(true);
|
||||
slots_spinner.addChangeListener(new javax.swing.event.ChangeListener() {
|
||||
@ -132,16 +132,16 @@ public final class UploadView extends javax.swing.JPanel implements Transference
|
||||
}
|
||||
});
|
||||
|
||||
speed_label.setFont(new java.awt.Font("Verdana", 3, 26)); // NOI18N
|
||||
speed_label.setFont(new java.awt.Font("Ubuntu", 3, 26)); // NOI18N
|
||||
speed_label.setHorizontalAlignment(javax.swing.SwingConstants.LEFT);
|
||||
speed_label.setText("speed");
|
||||
speed_label.setDoubleBuffered(true);
|
||||
|
||||
progress_pbar.setFont(new java.awt.Font("Verdana", 1, 18)); // NOI18N
|
||||
progress_pbar.setFont(new java.awt.Font("Ubuntu", 1, 18)); // NOI18N
|
||||
progress_pbar.setDoubleBuffered(true);
|
||||
|
||||
pause_button.setBackground(new java.awt.Color(255, 153, 0));
|
||||
pause_button.setFont(new java.awt.Font("Verdana", 1, 16)); // NOI18N
|
||||
pause_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
pause_button.setForeground(java.awt.Color.white);
|
||||
pause_button.setText("PAUSE UPLOAD");
|
||||
pause_button.setDoubleBuffered(true);
|
||||
@ -152,7 +152,7 @@ public final class UploadView extends javax.swing.JPanel implements Transference
|
||||
});
|
||||
|
||||
stop_button.setBackground(new java.awt.Color(255, 0, 0));
|
||||
stop_button.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
stop_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
stop_button.setForeground(java.awt.Color.white);
|
||||
stop_button.setText("CANCEL UPLOAD");
|
||||
stop_button.setDoubleBuffered(true);
|
||||
@ -162,12 +162,12 @@ public final class UploadView extends javax.swing.JPanel implements Transference
|
||||
}
|
||||
});
|
||||
|
||||
file_name_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
file_name_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
file_name_label.setForeground(new java.awt.Color(51, 51, 255));
|
||||
file_name_label.setText("file_name");
|
||||
file_name_label.setDoubleBuffered(true);
|
||||
|
||||
close_button.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
close_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
close_button.setText("Close");
|
||||
close_button.setDoubleBuffered(true);
|
||||
close_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -177,7 +177,7 @@ public final class UploadView extends javax.swing.JPanel implements Transference
|
||||
});
|
||||
|
||||
restart_button.setBackground(new java.awt.Color(51, 51, 255));
|
||||
restart_button.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
restart_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
restart_button.setForeground(new java.awt.Color(255, 255, 255));
|
||||
restart_button.setText("Restart");
|
||||
restart_button.setDoubleBuffered(true);
|
||||
@ -187,7 +187,7 @@ public final class UploadView extends javax.swing.JPanel implements Transference
|
||||
}
|
||||
});
|
||||
|
||||
file_size_label.setFont(new java.awt.Font("Dialog", 1, 20)); // NOI18N
|
||||
file_size_label.setFont(new java.awt.Font("Ubuntu", 1, 20)); // NOI18N
|
||||
file_size_label.setForeground(new java.awt.Color(51, 51, 255));
|
||||
file_size_label.setText("file_size");
|
||||
file_size_label.setDoubleBuffered(true);
|
||||
@ -195,7 +195,7 @@ public final class UploadView extends javax.swing.JPanel implements Transference
|
||||
slot_status_label.setFont(new java.awt.Font("Dialog", 1, 14)); // NOI18N
|
||||
slot_status_label.setDoubleBuffered(true);
|
||||
|
||||
folder_link_button.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
folder_link_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
folder_link_button.setText("Copy folder link");
|
||||
folder_link_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
@ -203,7 +203,7 @@ public final class UploadView extends javax.swing.JPanel implements Transference
|
||||
}
|
||||
});
|
||||
|
||||
file_link_button.setFont(new java.awt.Font("Dialog", 1, 16)); // NOI18N
|
||||
file_link_button.setFont(new java.awt.Font("Ubuntu", 1, 16)); // NOI18N
|
||||
file_link_button.setText("Copy file link");
|
||||
file_link_button.setEnabled(false);
|
||||
file_link_button.addActionListener(new java.awt.event.ActionListener() {
|
||||
@ -228,7 +228,7 @@ public final class UploadView extends javax.swing.JPanel implements Transference
|
||||
.addComponent(progress_pbar, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addGroup(layout.createSequentialGroup()
|
||||
.addComponent(speed_label, javax.swing.GroupLayout.PREFERRED_SIZE, 340, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 106, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 121, Short.MAX_VALUE)
|
||||
.addComponent(pause_button))
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
|
||||
.addComponent(close_button)
|
||||
|
Loading…
x
Reference in New Issue
Block a user