Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
8fb3fff5
Commit
8fb3fff5
authored
19 years ago
by
jpbl
Browse files
Options
Downloads
Patches
Plain Diff
Compiling warning fix
parent
8b3589a5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
libs/taxidermy/QWidgetBuilder.cpp
+0
-1
0 additions, 1 deletion
libs/taxidermy/QWidgetBuilder.cpp
libs/taxidermy/doc.txt
+31
-0
31 additions, 0 deletions
libs/taxidermy/doc.txt
libs/utilspp/NonCopyable.hpp
+1
-1
1 addition, 1 deletion
libs/utilspp/NonCopyable.hpp
with
32 additions
and
2 deletions
libs/taxidermy/QWidgetBuilder.cpp
+
0
−
1
View file @
8fb3fff5
...
...
@@ -58,7 +58,6 @@ taxidermy::QWidgetBuilder::load(const QMap< QString, QString > &values)
mBackgroundImage
=
qtutils
::
transparize
(
*
bimage
);
}
else
{
std
::
cout
<<
*
bimage
<<
" is not trans
\n
"
;
qtutils
::
retreive
(
*
bimage
,
mBackgroundImage
);
}
}
...
...
This diff is collapsed.
Click to expand it.
libs/taxidermy/doc.txt
0 → 100644
+
31
−
0
View file @
8fb3fff5
QWidget:
You can specify many kinds of options for a QWidget:
Position: there's two options for the position of a widget:
- x: the x position of the widget, relative to the parent.
- y: the y position of the widget, relative to the parent.
You need to specify both of them in order to be valid.
Size: you can specify the size of a widget with thow option:
- height: the height of a widget.
- width: the width of a widget.
You need to specify both of them in order to be valid.
Background: You can specifiy background's color or a pixmap to be the
background of an image. There's three options that manages the background:
- bImage: the pixmap name to be used.
- tranparent: if the pixmap has an alpha buffer, the label will use the pixmap mask.
This is the default option.
- force_transparent: If this is specified it will try to use the alpha buffer, if
there's no alpha buffer, it will create a heuristic mask.
- bColor: the color of the background.
bImage has a higher priority over bColor. It means that if you specify
both attributes, the bImage will be used. However, if the image is not
valid, the color will be used.
If you specifiy an image for background the widget will be resized to the
size of the image. If you specify the size with an image, the size of the
image will be used instead of the image.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
libs/utilspp/NonCopyable.hpp
+
1
−
1
View file @
8fb3fff5
...
...
@@ -33,7 +33,7 @@ namespace utilspp
{}
private
:
NonCopyable
(
const
NonCopyable
&
r
)
NonCopyable
(
const
NonCopyable
&
)
{}
};
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment