Sponsored Content
Top Forums Shell Programming and Scripting Seeking Alternative for diff in hp Post 302987421 by vinil on Friday 9th of December 2016 03:08:08 AM
Old 12-09-2016
Will you please advise how to do so ?
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

diff 2 files; output diff's to 3rd file

Hello, I want to compare two files. All records in file 2 that are not in file 1 should be output to file 3. For example: file 1 123 1234 123456 file 2 123 2345 23456 file 3 should have 2345 23456 I have looked at diff, bdiff, cmp, comm, diff3 without any luck! (2 Replies)
Discussion started by: blt123
2 Replies

2. UNIX for Dummies Questions & Answers

Seeking help...Urgent!!! Please help me...

Can any1 please help me answer a couple of this question? 1) What is the process management of UNIX? (single task, multitasks, etc...) 2) What is the process management of Linux? (single task, multitasks, etc...) 3) What is the type of process of UNIX? (process, thread, etc...) 4)... (1 Reply)
Discussion started by: blind02002
1 Replies

3. Shell Programming and Scripting

seeking help with shell script

I am trying to update a script which I had created to monitor tablespace usage. Originally the sql spooled out to a text file anything with more than 75% used. I have been asked to change this. Now the sql must spool out all tablespaces. The script I have to write should scan the file for... (4 Replies)
Discussion started by: Niadh
4 Replies

4. UNIX for Dummies Questions & Answers

Problems using rsync in Leopard with SSH... seeking solution/alternative

Precursor: ...it may sound like I'm at least somewhat comfortable with Unix, but I'm far from it. Layman's terms would be greatly appreciated :) Okay, so here's the situation. I created a website using iWeb, and I'm not using a .Mac account (you can sync website in one click if you do). Being... (4 Replies)
Discussion started by: compulsiveguile
4 Replies

5. Shell Programming and Scripting

Simulate SVN diff using plain diff

Hi, svn diff does not work very well with 2 local folders, so I am trying to do this diff using diff locally. since there's a bunch of meta files in an svn directory, I want to do a diff that excludes everything EXCEPT *.java files. there seems to be only an --exclude option, so I'm not sure... (3 Replies)
Discussion started by: ackbarr
3 Replies

6. Shell Programming and Scripting

.procmailrc and uudeview (put attachments from diff senders to diff folders)

Moderator, please, delete this topic (1 Reply)
Discussion started by: optik77
1 Replies

7. Shell Programming and Scripting

serach diff filename in diff location using shell scripting

Hi, I am new to shell scripting. please help me to find out the solution. I need a script where we need to read the text file(consists of all file names) and get the file names one by one and append the date suffix for each file name as 'yyyymmdd' . Then search each file if exists... (1 Reply)
Discussion started by: Lucky123
1 Replies

8. Shell Programming and Scripting

Seeking help with search

Hello All, I'm looking for some help with grepping for two specific strings in files with multiple lines. For instance, I have files and the content looks like this: =====Start===== Record:1 Field 1 = aaaaaaaaaa Field 2 = bbbbbbbbbb Field 3 = 1234567890 ... (9 Replies)
Discussion started by: bbbngowc
9 Replies

9. Shell Programming and Scripting

Diff 3 files, but diff only their 2nd column

Guys i have 3 files, but i want to compare and diff only the 2nd column path=`/home/whois/doms` for i in `cat domain.tx` do whois $i| sed -n '/Registry Registrant ID:/,/Registrant Email:/p' > $path/$i.registrant whois $i| sed -n '/Registry Admin ID:/,/Admin Email:/p' > $path/$i.admin... (10 Replies)
Discussion started by: kenshinhimura
10 Replies
QClipboard(3qt) 														   QClipboard(3qt)

NAME
QClipboard - Access to the window system clipboard SYNOPSIS
#include <qclipboard.h> Inherits QObject. Public Members enum Mode { Clipboard, Selection } void clear ( Mode mode ) void clear () (obsolete) bool supportsSelection () const bool ownsSelection () const bool ownsClipboard () const void setSelectionMode ( bool enable ) (obsolete) bool selectionModeEnabled () const (obsolete) QString text ( Mode mode ) const QString text ( QCString & subtype, Mode mode ) const void setText ( const QString & text, Mode mode ) QMimeSource * data ( Mode mode ) const void setData ( QMimeSource * src, Mode mode ) QImage image ( Mode mode ) const QPixmap pixmap ( Mode mode ) const void setImage ( const QImage & image, Mode mode ) void setPixmap ( const QPixmap & pixmap, Mode mode ) QString text () const (obsolete) QString text ( QCString & subtype ) const (obsolete) void setText ( const QString & text ) (obsolete) QMimeSource * data () const (obsolete) void setData ( QMimeSource * src ) (obsolete) QImage image () const (obsolete) QPixmap pixmap () const (obsolete) void setImage ( const QImage & image ) (obsolete) void setPixmap ( const QPixmap & pixmap ) (obsolete) Signals void selectionChanged () void dataChanged () DESCRIPTION
The QClipboard class provides access to the window system clipboard. The clipboard offers a simple mechanism to copy and paste data between applications. QClipboard supports the same data types that QDragObject does, and uses similar mechanisms. For advanced clipboard usage read the drag-and- drop documentation. There is a single QClipboard object in an application, and you can access it using QApplication::clipboard(). Example: QClipboard *cb = QApplication::clipboard(); QString text; // Copy text from the clipboard (paste) text = cb->text(); if ( text ) qDebug( "The clipboard contains: %s", text ); // Copy text into the clipboard cb->setText( "This text can be pasted by other programs" ); QClipboard features some convenience functions to access common data types: setText() allows the exchange of Unicode text and setPixmap() and setImage() allows the exchange of QPixmaps and QImages between applications. The setData() function is the ultimate in flexibility: it allows you to add any QMimeSource into the clipboard. There are corresponding getters for each of these, e.g. text(), image() and pixmap(). You can clear the clipboard by calling clear(). The underlying clipboards of the X Window system and MS Windows differ. The X Window system has a concept of selection -- when text is selected, it is immediately available as the global mouse selection; MS Windows only adds text to the clipboard when an explicit copy or cut is made. The X Window system also has a concept of ownership; if you change the selection within a window, X11 will only notify the owner and the previous owner of the change; in MS Windows the clipboard is a fully global resource so all applications are notified of changes. See the multiclip example in the Qt Designer examples directory for an example of a multiplatform clipboard application that also demonstrates selection handling. See also Environment Classes and Input/Output and Networking. Member Type Documentation QClipboard::Mode This enum type is used to control which part of the system clipboard is used by QClipboard::data(), QClipboard::setData() and related functions. QClipboard::Clipboard - indicates that data should be stored and retreived from the global clipboard. QClipboard::Selection - indicates that data should be stored and retreived from the global mouse selection. Note: Support for Selection is provided only on systems with a global mouse selection (e.g. X11). See also QClipboard::supportsSelection(). MEMBER FUNCTION DOCUMENTATION
void QClipboard::clear ( Mode mode ) Clear the clipboard contents. The mode argument is used to control which part of the system clipboard is used. If mode is QClipboard::Clipboard, this function clears the the global clipboard contents. If mode is QClipboard::Selection, this function clears the global mouse selection contents. See also QClipboard::Mode and supportsSelection(). void QClipboard::clear () This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. This function uses the QClipboard::clear() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard. QMimeSource * QClipboard::data ( Mode mode ) const Returns a reference to a QMimeSource representation of the current clipboard data. The mode argument is used to control which part of the system clipboard is used. If mode is QClipboard::Clipboard, the data is retreived from the global clipboard. If mode is QClipboard::Selection, the data is retreived from the global mouse selection. See also setData(). QMimeSource * QClipboard::data () const This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. This function uses the QClipboard::data() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard. void QClipboard::dataChanged () [signal] This signal is emitted when the clipboard data is changed. QImage QClipboard::image ( Mode mode ) const Returns the clipboard image, or returns a null image if the clipboard does not contain an image or if it contains an image in an unsupported image format. The mode argument is used to control which part of the system clipboard is used. If mode is QClipboard::Clipboard, the image is retreived from the global clipboard. If mode is QClipboard::Selection, the image is retreived from the global mouse selection. See also setImage(), pixmap(), data(), and QImage::isNull(). QImage QClipboard::image () const This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. This function uses the QClipboard::image() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard. bool QClipboard::ownsClipboard () const Returns TRUE if this clipboard object owns the clipboard data; otherwise returns FALSE. bool QClipboard::ownsSelection () const Returns TRUE if this clipboard object owns the mouse selection data; otherwise returns FALSE. QPixmap QClipboard::pixmap ( Mode mode ) const Returns the clipboard pixmap, or null if the clipboard does not contain a pixmap. Note that this can lose information. For example, if the image is 24-bit and the display is 8-bit, the result is converted to 8 bits, and if the image has an alpha channel, the result just has a mask. The mode argument is used to control which part of the system clipboard is used. If mode is QClipboard::Clipboard, the pixmap is retreived from the global clipboard. If mode is QClipboard::Selection, the pixmap is retreived from the global mouse selection. See also setPixmap(), image(), data(), and QPixmap::convertFromImage(). QPixmap QClipboard::pixmap () const This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. This function uses the QClipboard::pixmap() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard. void QClipboard::selectionChanged () [signal] This signal is emitted when the selection is changed. This only applies to windowing systems that support selections, e.g. X11. Windows doesn't support selections. bool QClipboard::selectionModeEnabled () const This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. Use the QClipboard::data(), QClipboard::setData() and related functions which take a QClipboard::Mode argument. Returns the selection mode. See also setSelectionMode() and supportsSelection(). void QClipboard::setData ( QMimeSource * src, Mode mode ) Sets the clipboard data to src. Ownership of the data is transferred to the clipboard. If you want to remove the data either call clear() or call setData() again with new data. The mode argument is used to control which part of the system clipboard is used. If mode is QClipboard::Clipboard, the data is retreived from the global clipboard. If mode is QClipboard::Selection, the data is retreived from the global mouse selection. The QDragObject subclasses are reasonable objects to put into the clipboard (but do not try to call QDragObject::drag() on the same object). Any QDragObject placed in the clipboard should have a parent of 0. Do not put QDragMoveEvent or QDropEvent subclasses in the clipboard, as they do not belong to the event handler which receives them. The setText(), setImage() and setPixmap() functions are simpler wrappers for setting text, image and pixmap data respectively. See also data(). void QClipboard::setData ( QMimeSource * src ) This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. This function uses the QClipboard::setData() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard. void QClipboard::setImage ( const QImage & image, Mode mode ) Copies image into the clipboard. The mode argument is used to control which part of the system clipboard is used. If mode is QClipboard::Clipboard, the image is stored in the global clipboard. If mode is QClipboard::Selection, the data is stored in the global mouse selection. This is shorthand for: setData( new QImageDrag(image), mode ) See also image(), setPixmap(), and setData(). void QClipboard::setImage ( const QImage & image ) This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. This function uses the QClipboard::setImage() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard. void QClipboard::setPixmap ( const QPixmap & pixmap, Mode mode ) Copies pixmap into the clipboard. Note that this is slower than setImage() because it needs to convert the QPixmap to a QImage first. The mode argument is used to control which part of the system clipboard is used. If mode is QClipboard::Clipboard, the pixmap is stored in the global clipboard. If mode is QClipboard::Selection, the pixmap is stored in the global mouse selection. See also pixmap(), setImage(), and setData(). void QClipboard::setPixmap ( const QPixmap & pixmap ) This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. This function uses the QClipboard::setPixmap() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard. void QClipboard::setSelectionMode ( bool enable ) This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. Use the QClipboard::data(), QClipboard::setData() and related functions which take a QClipboard::Mode argument. Sets the clipboard selection mode. If enable is TRUE, then subsequent calls to QClipboard::setData() and other functions which put data into the clipboard will put the data into the mouse selection, otherwise the data will be put into the clipboard. See also supportsSelection() and selectionModeEnabled(). void QClipboard::setText ( const QString & text, Mode mode ) Copies text into the clipboard as plain text. The mode argument is used to control which part of the system clipboard is used. If mode is QClipboard::Clipboard, the text is stored in the global clipboard. If mode is QClipboard::Selection, the text is stored in the global mouse selection. See also text() and setData(). void QClipboard::setText ( const QString & text ) This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. This function uses the QClipboard::setText() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard. bool QClipboard::supportsSelection () const Returns TRUE if the clipboard supports mouse selection; otherwise returns FALSE. QString QClipboard::text ( Mode mode ) const Returns the clipboard text as plain text, or a null string if the clipboard does not contain any text. The mode argument is used to control which part of the system clipboard is used. If mode is QClipboard::Clipboard, the text is retreived from the global clipboard. If mode is QClipboard::Selection, the text is retreived from the global mouse selection. See also setText(), data(), and QString::operator!(). QString QClipboard::text ( QCString & subtype, Mode mode ) const This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Returns the clipboard text in subtype subtype, or a null string if the clipboard does not contain any text. If subtype is null, any subtype is acceptable, and subtype is set to the chosen subtype. The mode argument is used to control which part of the system clipboard is used. If mode is QClipboard::Clipboard, the text is retreived from the global clipboard. If mode is QClipboard::Selection, the text is retreived from the global mouse selection. Common values for subtype are "plain" and "html". See also setText(), data(), and QString::operator!(). QString QClipboard::text () const This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. This function uses the QClipboard::text() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard. QString QClipboard::text ( QCString & subtype ) const This function is obsolete. It is provided to keep old source working. We strongly advise against using it in new code. This function uses the QClipboard::text() function which takes a QClipboard::Mode argument. The value of the mode argument is determined by the return value of selectionModeEnabled(). If selectionModeEnabled() returns TRUE, the mode argument is QClipboard::Selection, otherwise the mode argument is QClipboard::Clipboard. SEE ALSO
http://doc.trolltech.com/qclipboard.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 (qclipboard.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QClipboard(3qt)
All times are GMT -4. The time now is 01:04 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy