Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-1.1
Commits
75873492
Commit
75873492
authored
Oct 03, 2002
by
Sigmund Augdal Helberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
forgot to add the actual code in my last commit
parent
a26eef41
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
108 additions
and
0 deletions
+108
-0
modules/gui/kde/messages.cpp
modules/gui/kde/messages.cpp
+89
-0
modules/gui/kde/messages.h
modules/gui/kde/messages.h
+19
-0
No files found.
modules/gui/kde/messages.cpp
0 → 100644
View file @
75873492
#include "messages.h"
#include <qtextview.h>
#include <qlayout.h>
#include <qlabel.h>
#include <qvbox.h>
KMessagesWindow
::
KMessagesWindow
(
intf_thread_t
*
p_intf
,
msg_subscription_t
*
p_msg
)
:
KDialogBase
(
Plain
,
_
(
"Messages"
),
Ok
,
Ok
,
0
,
0
,
false
)
{
// clearWFlags(~0);
// setWFlags(WType_TopLevel);
setSizeGripEnabled
(
true
);
this
->
p_intf
=
p_intf
;
this
->
p_msg
=
p_msg
;
QFrame
*
page
=
plainPage
();
QVBoxLayout
*
toplayout
=
new
QVBoxLayout
(
page
);
// QScrollView *sv = new QScrollView(page);
// sv->setResizePolicy(QScrollView::AutoOneFit);
// sv->setFrameStyle(QScrollView::NoFrame);
// toplayout->addWidget(sv);
// QVBox *category_table = new QVBox(sv->viewport());
// sv->addChild(category_table);
// toplayout->addStretch(10);
QVBox
*
category_table
=
new
QVBox
(
page
);
toplayout
->
addWidget
(
category_table
);
toplayout
->
setResizeMode
(
QLayout
::
FreeResize
);
category_table
->
setSpacing
(
spacingHint
());
resize
(
300
,
400
);
new
QLabel
(
_
(
"Messages:"
),
category_table
);
text
=
new
QTextView
(
category_table
);
// clearWFlags(WStyle_DialogBorder|WStyle_NoBorder);
// setWFlags(WStyle_NormalBorder|WStyle_Customize);
// connect(this, SIGNAL(okClicked()), this, SLOT(accept()));
}
KMessagesWindow
::~
KMessagesWindow
()
{
;
}
void
KMessagesWindow
::
update
()
{
int
i_stop
,
i_start
;
/* Update the log window */
vlc_mutex_lock
(
p_msg
->
p_lock
);
i_stop
=
*
p_msg
->
pi_stop
;
vlc_mutex_unlock
(
p_msg
->
p_lock
);
if
(
p_msg
->
i_start
!=
i_stop
)
{
// static GdkColor white = { 0, 0xffff, 0xffff, 0xffff };
// static GdkColor gray = { 0, 0xaaaa, 0xaaaa, 0xaaaa };
// static GdkColor yellow = { 0, 0xffff, 0xffff, 0x6666 };
// static GdkColor red = { 0, 0xffff, 0x6666, 0x6666 };
static
const
char
*
ppsz_type
[
4
]
=
{
": "
,
" error: "
,
" warning: "
,
" debug: "
};
// static GdkColor * pp_color[4] = { &white, &red, &yellow, &gray };
for
(
i_start
=
p_msg
->
i_start
;
i_start
!=
i_stop
;
i_start
=
(
i_start
+
1
)
%
VLC_MSG_QSIZE
)
{
text
->
setText
(
text
->
text
()
+
QString
(
p_msg
->
p_msg
[
i_start
].
psz_module
)
+
ppsz_type
[
p_msg
->
p_msg
[
i_start
].
i_type
]
+
p_msg
->
p_msg
[
i_start
].
psz_msg
+
"<br>"
);
// /* Append all messages to log window */
// gtk_text_insert( p_intf->p_sys->p_messages_text, NULL, &gray,
// NULL, p_msg->p_msg[i_start].psz_module, -1 );
// gtk_text_insert( p_intf->p_sys->p_messages_text, NULL, &gray,
// NULL, ppsz_type[p_msg->p_msg[i_start].i_type],
// -1 );
// gtk_text_insert( p_intf->p_sys->p_messages_text, NULL,
// pp_color[p_msg->p_msg[i_start].i_type], NULL,
// p_msg->p_msg[i_start].psz_msg, -1 );
// gtk_text_insert( p_intf->p_sys->p_messages_text, NULL, &gray,
// NULL, "\n", -1 );
}
vlc_mutex_lock
(
p_msg
->
p_lock
);
p_msg
->
i_start
=
i_start
;
vlc_mutex_unlock
(
p_msg
->
p_lock
);
// gtk_text_set_point( p_intf->p_sys->p_messages_text,
// gtk_text_get_length( p_intf->p_sys->p_messages_text ) );
}
}
modules/gui/kde/messages.h
0 → 100644
View file @
75873492
#include <kdialogbase.h>
#include <qtextview.h>
#include "common.h"
class
KMessagesWindow
:
public
KDialogBase
{
Q_OBJECT
public:
KMessagesWindow
(
intf_thread_t
*
,
msg_subscription_t
*
);
~
KMessagesWindow
();
public
slots
:
void
update
();
private:
intf_thread_t
*
p_intf
;
QTextView
*
text
;
msg_subscription_t
*
p_msg
;
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment