Sponsored Content
The Lounge What is on Your Mind? OSX 10.14 Mojave Commands - 13K+ Total Man Pages in Repository Post 303024352 by Neo on Sunday 7th of October 2018 03:35:30 AM
Old 10-07-2018
OSX 10.14 Mojave Commands - 13K+ Total Man Pages in Repository

Just added OSX 10.14 Mojave Commands (currently over 13K pages in the mojave repo) to our man page repository:

OSX 10.14 Mojave Commands

We need to update all the man pages to the most current versions, so please contribute man page sets to your favorite OS environment (tar.gz with os and version) and I will add them.

Please tar like this:

Code:
CYBER-SA:man Tim$ cd /usr/share/man (or where ever your root dir for man pages resides)

CYBER-SA:man Tim$ ls -l
total 1024
drwxr-xr-x   1339 root  wheel   42848 Oct  6 08:56 man1
drwxr-xr-x    254 root  wheel    8128 Sep 18 23:23 man2
drwxr-xr-x  10340 root  wheel  330880 Sep 18 23:23 man3
drwxr-xr-x     48 root  wheel    1536 Jun 22 15:51 man4
drwxr-xr-x    195 root  wheel    6240 Oct  6 08:56 man5
drwxr-xr-x      3 root  wheel      96 Jun  9 13:18 man6
drwxr-xr-x     54 root  wheel    1728 Aug 29 12:38 man7
drwxr-xr-x    687 root  wheel   21984 Oct  6 08:56 man8
drwxr-xr-x     23 root  wheel     736 Jun 11 09:21 man9
drwxr-xr-x    661 root  wheel   21152 Aug 29 12:38 mann
-rw-r--r--      1 root  wheel  498861 Oct  6 20:55 whatis

Then something like this (based on your OS environment):

Code:
tar -cLvzf /tmp/mojave.10.14.man.pages.usr.share.man.tar.gz *

All man pages should be gzipped (.gz extension) and please dereference all symlinks when you tar all files. Thanks.

Thanks.

See also:

https://www.unix.com/man-page-repository.php
 

6 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Man pages

Hello , I just installed openssh in my system . I actually tried to man sshd but it says no entry , though there is a man directory in the installation which have the man pages for sshd . Can anyone tell me how should i install these man pages . DP (2 Replies)
Discussion started by: DPAI
2 Replies

2. UNIX for Dummies Questions & Answers

man pages

Hi, I've written now a man pages, but I don't knwo how to get 'man' to view them. Where have I to put this files, which directories are allowed?? THX Bensky (3 Replies)
Discussion started by: bensky
3 Replies

3. UNIX for Dummies Questions & Answers

man pages

Hi folks, I want to know all the commands for which man pages are available. How do i get it? Cheers, Nisha (4 Replies)
Discussion started by: Nisha
4 Replies

4. Solaris

MAN PAGES

Hi everyone, I have a small query, in solaris the man pages get displayed on half of the terminal , can i get a full terminal or full screen display ?:) (2 Replies)
Discussion started by: M.Choudhury
2 Replies

5. Programming

man pages for commands and functions of same name?

Hi friends, I hope everyone is fine and doing well. I am facing this irritating problem. As you know that manual pages are available for both unix commands and c functions. Now when I try to check the manual pages for functions like read write exit I get the manual pages for the... (3 Replies)
Discussion started by: gabam
3 Replies

6. Shell Programming and Scripting

Commands for man pages

what command should i use for displaying the manual pages for the socket, read and connect system calls? (1 Reply)
Discussion started by: Nabeel Nazir
1 Replies
QWheelEvent(3qt)														  QWheelEvent(3qt)

NAME
QWheelEvent - Parameters that describe a wheel event SYNOPSIS
#include <qevent.h> Inherits QEvent. Public Members QWheelEvent ( const QPoint & pos, int delta, int state, Orientation orient = Vertical ) QWheelEvent ( const QPoint & pos, const QPoint & globalPos, int delta, int state, Orientation orient = Vertical ) int delta () const const QPoint & pos () const const QPoint & globalPos () const int x () const int y () const int globalX () const int globalY () const ButtonState state () const Orientation orientation () const bool isAccepted () const void accept () void ignore () DESCRIPTION
The QWheelEvent class contains parameters that describe a wheel event. Wheel events are sent to the widget under the mouse, and if that widget does not handle the event they are sent to the focus widget. The rotation distance is provided by delta(). The functions pos() and globalPos() return the mouse pointer location at the time of the event. A wheel event contains a special accept flag that indicates whether the receiver wants the event. You should call QWheelEvent::accept() if you handle the wheel event; otherwise it will be sent to the parent widget. The QWidget::setEnable() function can be used to enable or disable mouse and keyboard events for a widget. The event handler QWidget::wheelEvent() receives wheel events. See also QMouseEvent, QWidget::grabMouse(), and Event Classes. MEMBER FUNCTION DOCUMENTATION
QWheelEvent::QWheelEvent ( const QPoint & pos, int delta, int state, Orientation orient = Vertical ) Constructs a wheel event object. The globalPos() is initialized to QCursor::pos(), i.e. pos, which is usually (but not always) right. Use the other constructor if you need to specify the global position explicitly. delta contains the rotation distance, state holds the keyboard modifier flags at the time of the event and orient holds the wheel's orientation. See also pos(), delta(), and state(). QWheelEvent::QWheelEvent ( const QPoint & pos, const QPoint & globalPos, int delta, int state, Orientation orient = Vertical ) Constructs a wheel event object. The position when the event occurred is given in pos and globalPos. delta contains the rotation distance, state holds the keyboard modifier flags at the time of the event and orient holds the wheel's orientation. See also pos(), globalPos(), delta(), and state(). void QWheelEvent::accept () Sets the accept flag of the wheel event object. Setting the accept parameter indicates that the receiver of the event wants the wheel event. Unwanted wheel events are sent to the parent widget. The accept flag is set by default. See also ignore(). int QWheelEvent::delta () const Returns the distance that the wheel is rotated expressed in multiples or divisions of the wheel delta, which is currently defined to be 120. A positive value indicates that the wheel was rotated forwards away from the user; a negative value indicates that the wheel was rotated backwards toward the user. The wheel delta constant was defined to be 120 by wheel mouse vendors to allow building finer-resolution wheels in the future, including perhaps a freely rotating wheel with no notches. The expectation is that such a device would send more messages per rotation but with a smaller value in each message. const QPoint &; QWheelEvent::globalPos () const Returns the global position of the mouse pointer at the time of the event. This is important on asynchronous window systems such as X11; whenever you move your widgets around in response to mouse events, globalPos() can differ a lot from the current pointer position QCursor::pos(). See also globalX() and globalY(). int QWheelEvent::globalX () const Returns the global x-position of the mouse pointer at the time of the event. See also globalY() and globalPos(). int QWheelEvent::globalY () const Returns the global y-position of the mouse pointer at the time of the event. See also globalX() and globalPos(). void QWheelEvent::ignore () Clears the accept flag parameter of the wheel event object. Clearing the accept parameter indicates that the event receiver does not want the wheel event. Unwanted wheel events are sent to the parent widget. The accept flag is set by default. See also accept(). bool QWheelEvent::isAccepted () const Returns TRUE if the receiver of the event handles the wheel event; otherwise returns FALSE. Orientation QWheelEvent::orientation () const Returns the wheel's orientation. const QPoint &; QWheelEvent::pos () const Returns the position of the mouse pointer, relative to the widget that received the event. If you move your widgets around in response to mouse events, use globalPos() instead of this function. See also x(), y(), and globalPos(). ButtonState QWheelEvent::state () const Returns the keyboard modifier flags of the event. The returned value is ShiftButton, ControlButton, and AltButton OR'ed together. int QWheelEvent::x () const Returns the x-position of the mouse pointer, relative to the widget that received the event. See also y() and pos(). int QWheelEvent::y () const Returns the y-position of the mouse pointer, relative to the widget that received the event. See also x() and pos(). SEE ALSO
http://doc.trolltech.com/qwheelevent.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2007 Trolltech ASA, 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 (qwheelevent.3qt) and the Qt version (3.3.8). Trolltech AS 2 February 2007 QWheelEvent(3qt)
All times are GMT -4. The time now is 10:07 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy