Sponsored Content
The Lounge What is on Your Mind? Things i Hate (Or: Rants by an Old Man) Post 303030383 by Corona688 on Friday 8th of February 2019 02:52:30 PM
Old 02-08-2019
Google subverted the 1998 rules of website survival: Beg, plead, trick, force your users into clicking ads. Make your downloads not work unless ads are clicked. Generate fake clicks. Clicks, clicks, clicks or die. Google survived without selling our clicks to anyone else. They looked like a beacon of light in a web of 99% pure sleaze.

Looked at in that light, they're as pure-as-snow as they were in 1998. They're still chugging along "for free", and if their search isn't what it's was, it's still on the "good" side of okay. We just finally understand the implications of what they've been selling, and to whom, all along.
 

8 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Don't hate me because I'm stupid...

Hi all, I don't know the first thing about Unix, but I would like to learn. I would like to know what the difference between Linux and Unix is, and where I can obtain a copy of either. Thanks :o (8 Replies)
Discussion started by: ThisIsNewToMe
8 Replies

2. UNIX for Dummies Questions & Answers

i hate gtk and kde!

i don't want to install any themes, but i do want to get rid of the god awful color scheme it defaults to. i've tried editing /usr/X11R6/share/themes/Default/gtk-2.0/gtkrc, but to no avail. i've also changed, and even removed the .gtkrc-kde that kde generates automatically, also to no avail. ... (12 Replies)
Discussion started by: brandan
12 Replies

3. Programming

Complicating things?

So basically what im trying to do is ... Open file, read that file, than try to find .. We or we and replace them with I, but not replace the cases where words contain We or we, such as Went, went, etc a and replace them with the, but not replace the cases where words contain a, such as... (1 Reply)
Discussion started by: bconnor
1 Replies

4. Programming

Question about several things in C

Hey guys, first of all I'd like to say Hi to everyone. I am new here and this is my first post. I have a question about some C stuff. I am in Computer Science and I have an assignment for a UNIX Applications course. It is really complicated, however. We're using the C language for this and... (1 Reply)
Discussion started by: V4D3R
1 Replies

5. Shell Programming and Scripting

I hate SED - please help!!

Hi all I have been googling for ages but with no prevail hence this new thread. I would like to add a new line after a particular text string. For example, assume the original file contains the following text: .. line1 line2 line3 .. I would like to insert the text string... (3 Replies)
Discussion started by: robbiegregg
3 Replies

6. UNIX for Dummies Questions & Answers

Just trying to find out a few things ....

Hi everyone Just a couple of quick questions if I may. Can I ask what is meant by "flavours"?? I've come across it many times in the forums and I'm guessing that it is a variery of either Linux or UNIX (I know nil about either) which has developed but not really got a clue. ... (1 Reply)
Discussion started by: Tiramisu
1 Replies

7. UNIX for Dummies Questions & Answers

things root can't do

Hey all my co-workers and I are trying to put together a list of things root "Can't" do on any *NIX OS, so I wanted to come here and see what all we could come up with. Here are two to start this off: write to a read only mount FS kill a tape rewind Please add what you know. Thanks,... (5 Replies)
Discussion started by: sunadmn
5 Replies

8. Solaris

man and ldm man

According to Sun documentation (Ldoms 1.1 Administration Guide), To access the ldm(1M) man page, add the directory path /opt/SUNWldm/man to the variable $MANPATH. When I add the lines: MANPATH=$MANPATH:/opt/SUNWldm/man export MANPATH to .profile, exit root and re-login, I would have "man ldm"... (5 Replies)
Discussion started by: StarSol
5 Replies
QWSDecoration(3qt)														QWSDecoration(3qt)

NAME
QWSDecoration - Allows the appearance of the Qt/Embedded Window Manager to be customized SYNOPSIS
#include <qwsdecoration_qws.h> Public Members QWSDecoration () virtual ~QWSDecoration () enum Region { None = 0, All = 1, Title = 2, Top = 3, Bottom = 4, Left = 5, Right = 6, TopLeft = 7, TopRight = 8, BottomLeft = 9, BottomRight = 10, Close = 11, Minimize = 12, Maximize = 13, Normalize = 14, Menu = 15, LastRegion = Menu } virtual QRegion region ( const QWidget * widget, const QRect & rect, Region type = All ) = 0 virtual void close ( QWidget * widget ) virtual void minimize ( QWidget * widget ) virtual void maximize ( QWidget * widget ) virtual QPopupMenu * menu ( const QWidget *, const QPoint & ) virtual void paint ( QPainter * painter, const QWidget * widget ) = 0 virtual void paintButton ( QPainter * painter, const QWidget * widget, Region type, int state ) = 0 DESCRIPTION
The QWSDecoration class allows the appearance of the Qt/Embedded Window Manager to be customized. Qt/Embedded provides window management to top level windows. The appearance of the borders and buttons (the decoration) around the managed windows can be customized by creating your own class derived from QWSDecoration and overriding a few methods. This class is non-portable. It is available only in Qt/Embedded. See also QApplication::qwsSetDecoration() and Qt/Embedded. Member Type Documentation QWSDecoration::Region This enum describes the regions in the window decorations. QWSDecoration::None - used internally. QWSDecoration::All - the entire region used by the window decoration. QWSDecoration::Title - Displays the window title and allows the window to be moved by dragging. QWSDecoration::Top - allows the top of the window to be resized. QWSDecoration::Bottom - allows the bottom of the window to be resized. QWSDecoration::Left - allows the left edge of the window to be resized. QWSDecoration::Right - allows the right edge of the window to be resized. QWSDecoration::TopLeft - allows the top-left of the window to be resized. QWSDecoration::TopRight - allows the top-right of the window to be resized. QWSDecoration::BottomLeft - allows the bottom-left of the window to be resized. QWSDecoration::BottomRight - allows the bottom-right of the window to be resized. QWSDecoration::Close - clicking in this region closes the window. QWSDecoration::Minimize - clicking in this region minimizes the window. QWSDecoration::Maximize - clicking in this region maximizes the window. QWSDecoration::Normalize - returns a maximized window to its previous size. QWSDecoration::Menu - clicking in this region opens the window operations (system) menu. MEMBER FUNCTION DOCUMENTATION
QWSDecoration::QWSDecoration () Constructs a decorator. QWSDecoration::~QWSDecoration () [virtual] Destroys a decorator. void QWSDecoration::close ( QWidget * widget ) [virtual] Called when the user clicks in the Close region. widget is the widget to be closed. The default behaviour is to close the widget. void QWSDecoration::maximize ( QWidget * widget ) [virtual] Called when the user clicks in the Maximize region. widget is the widget to be maximized. The default behaviour is to resize the widget to be full-screen. This method can be overridden e.g. to allow room for launch panels. QPopupMenu * QWSDecoration::menu ( const QWidget *, const QPoint & ) [virtual] Called to create a QPopupMenu containing the valid menu operations. The default implementation adds all possible window operations. void QWSDecoration::minimize ( QWidget * widget ) [virtual] Called when the user clicks in the Minimize region. widget is the widget to be minimized. The default behaviour is to ignore this action. void QWSDecoration::paint ( QPainter * painter, const QWidget * widget ) [pure virtual] Override to paint the border and title decoration around widget using painter. void QWSDecoration::paintButton ( QPainter * painter, const QWidget * widget, Region type, int state ) [pure virtual] Override to paint a button of type type using painter. widget is the widget whose button is to be drawn. state is the state of the button. It can be a combination of the following OR-ed together: QWSButton::MouseOver QWSButton::Clicked QWSButton::On QRegion QWSDecoration::region ( const QWidget * widget, const QRect & rect, Region type = All ) [pure virtual] Returns the requested region type which will contain widget with geometry rect. SEE ALSO
http://doc.trolltech.com/qwsdecoration.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qwsdecoration.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QWSDecoration(3qt)
All times are GMT -4. The time now is 07:52 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy