mirror of
https://github.com/qTox/qTox.git
synced 2024-03-22 14:00:36 +08:00
fixed css, comments, cleanup
This commit is contained in:
parent
e8416a98a2
commit
c4529d4062
|
@ -83,13 +83,13 @@ QFont Style::getFont(Style::Font font)
|
|||
static int defSize = QFontInfo(QFont()).pixelSize();
|
||||
|
||||
static QFont fonts[] = {
|
||||
appFont(defSize + 2, QFont::Bold),
|
||||
appFont(defSize , QFont::Normal),
|
||||
appFont(defSize , QFont::Bold),
|
||||
appFont(defSize - 1, QFont::Normal),
|
||||
appFont(defSize - 1, QFont::Bold),
|
||||
appFont(defSize - 2, QFont::Normal),
|
||||
appFont(defSize - 2, QFont::Light),
|
||||
appFont(defSize + 2, QFont::Bold), // extra big
|
||||
appFont(defSize , QFont::Normal), // big
|
||||
appFont(defSize , QFont::Bold), // big bold
|
||||
appFont(defSize - 1, QFont::Normal), // medium
|
||||
appFont(defSize - 1, QFont::Bold), // medium bold
|
||||
appFont(defSize - 2, QFont::Normal), // small
|
||||
appFont(defSize - 2, QFont::Light), // small light
|
||||
};
|
||||
|
||||
return fonts[font];
|
||||
|
|
|
@ -57,31 +57,6 @@
|
|||
<string>Video Settings</string>
|
||||
</property>
|
||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||
<item>
|
||||
<layout class="QVBoxLayout" name="verticalLayout" stretch="0">
|
||||
<item>
|
||||
<widget class="QFrame" name="CamFrame">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
|
||||
<horstretch>1</horstretch>
|
||||
<verstretch>99</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::StyledPanel</enum>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>QFrame::Raised</enum>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<item>
|
||||
<widget class="VideoSurface" name="CamVideoSurface" native="true"/>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QFormLayout" name="formLayout">
|
||||
<property name="fieldGrowthPolicy">
|
||||
|
@ -162,6 +137,31 @@
|
|||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
<item>
|
||||
<layout class="QVBoxLayout" name="verticalLayout" stretch="0">
|
||||
<item>
|
||||
<widget class="QFrame" name="CamFrame">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="MinimumExpanding" vsizetype="MinimumExpanding">
|
||||
<horstretch>1</horstretch>
|
||||
<verstretch>99</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="frameShape">
|
||||
<enum>QFrame::StyledPanel</enum>
|
||||
</property>
|
||||
<property name="frameShadow">
|
||||
<enum>QFrame::Raised</enum>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
||||
<item>
|
||||
<widget class="VideoSurface" name="CamVideoSurface" native="true"/>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
|
|
|
@ -15,12 +15,8 @@
|
|||
*/
|
||||
|
||||
#include "netcamview.h"
|
||||
<<<<<<< HEAD:src/widget/netcamview.cpp
|
||||
#include "src/core.h"
|
||||
=======
|
||||
#include "core.h"
|
||||
#include "widget/videosurface.h"
|
||||
>>>>>>> NetVideoSource, YUV shader, fixes:widget/netcamview.cpp
|
||||
#include "src/widget/videosurface.h"
|
||||
#include <QLabel>
|
||||
#include <QHBoxLayout>
|
||||
|
||||
|
|
|
@ -139,11 +139,8 @@ void VideoSurface::paintGL()
|
|||
glBindTexture(GL_TEXTURE_2D, textureId);
|
||||
glTexImage2D(GL_TEXTURE_2D,0, GL_RGB, res.width(), res.height(), 0, GL_RGB, GL_UNSIGNED_BYTE, 0);
|
||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
|
||||
|
||||
updateGeometry();
|
||||
}
|
||||
|
||||
|
||||
if (!currFrame.isNull())
|
||||
{
|
||||
pboIndex = (pboIndex + 1) % 2;
|
||||
|
|
|
@ -1,27 +1,25 @@
|
|||
QWidget
|
||||
{
|
||||
color: black;
|
||||
background-color: white;
|
||||
font: @big;
|
||||
}
|
||||
|
||||
QCheckBox
|
||||
{
|
||||
color: black;
|
||||
}
|
||||
|
||||
QLabel
|
||||
{
|
||||
color: black;
|
||||
}
|
||||
|
||||
QGroupBox::title
|
||||
{
|
||||
color: black;
|
||||
}
|
||||
|
||||
QGroupBox
|
||||
{
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
QWidget
|
||||
QGroupBox
|
||||
{
|
||||
color: black;
|
||||
background-color: white;
|
||||
font: @bigBold;
|
||||
}
|
||||
|
||||
QComboBox
|
||||
|
|
|
@ -2,4 +2,5 @@ QWidget
|
|||
{
|
||||
color: black;
|
||||
background: white;
|
||||
font: @bigBold;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user