Import Upstream version 1.8.24
|
@ -0,0 +1,17 @@
|
|||
Guidelines for Contributing:
|
||||
|
||||
1) Platform-specific functionality (for example, location of binaries that NetworkManager calls) should be done in a platform-independent manner. If code currently in NetworkManager does not accomodate that, then the code in NetworkManager needs to be changed to provide that. For example, if another platform does not use "dhclient" to get DHCP information, a separate function should be created to return a command-line string to call rather than inserting huge if/#ifdef blocks into the current function.
|
||||
|
||||
2) Coding standards are more-or-less GNOME coding standards, with these exceptions:
|
||||
a) 5 space tabs (no 8-space tabs allowed)
|
||||
b) REAL tabs
|
||||
c) Braces are moved to the next line, like:
|
||||
if (foobar)
|
||||
{
|
||||
...
|
||||
}
|
||||
rather than:
|
||||
if (foobar) {
|
||||
...
|
||||
}
|
||||
d) Limiting line width to 80 characters is frowned upon
|
|
@ -0,0 +1,340 @@
|
|||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 2, June 1991
|
||||
|
||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The licenses for most software are designed to take away your
|
||||
freedom to share and change it. By contrast, the GNU General Public
|
||||
License is intended to guarantee your freedom to share and change free
|
||||
software--to make sure the software is free for all its users. This
|
||||
General Public License applies to most of the Free Software
|
||||
Foundation's software and to any other program whose authors commit to
|
||||
using it. (Some other Free Software Foundation software is covered by
|
||||
the GNU Library General Public License instead.) You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
this service if you wish), that you receive source code or can get it
|
||||
if you want it, that you can change the software or use pieces of it
|
||||
in new free programs; and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to make restrictions that forbid
|
||||
anyone to deny you these rights or to ask you to surrender the rights.
|
||||
These restrictions translate to certain responsibilities for you if you
|
||||
distribute copies of the software, or if you modify it.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must give the recipients all the rights that
|
||||
you have. You must make sure that they, too, receive or can get the
|
||||
source code. And you must show them these terms so they know their
|
||||
rights.
|
||||
|
||||
We protect your rights with two steps: (1) copyright the software, and
|
||||
(2) offer you this license which gives you legal permission to copy,
|
||||
distribute and/or modify the software.
|
||||
|
||||
Also, for each author's protection and ours, we want to make certain
|
||||
that everyone understands that there is no warranty for this free
|
||||
software. If the software is modified by someone else and passed on, we
|
||||
want its recipients to know that what they have is not the original, so
|
||||
that any problems introduced by others will not reflect on the original
|
||||
authors' reputations.
|
||||
|
||||
Finally, any free program is threatened constantly by software
|
||||
patents. We wish to avoid the danger that redistributors of a free
|
||||
program will individually obtain patent licenses, in effect making the
|
||||
program proprietary. To prevent this, we have made it clear that any
|
||||
patent must be licensed for everyone's free use or not licensed at all.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||
|
||||
0. This License applies to any program or other work which contains
|
||||
a notice placed by the copyright holder saying it may be distributed
|
||||
under the terms of this General Public License. The "Program", below,
|
||||
refers to any such program or work, and a "work based on the Program"
|
||||
means either the Program or any derivative work under copyright law:
|
||||
that is to say, a work containing the Program or a portion of it,
|
||||
either verbatim or with modifications and/or translated into another
|
||||
language. (Hereinafter, translation is included without limitation in
|
||||
the term "modification".) Each licensee is addressed as "you".
|
||||
|
||||
Activities other than copying, distribution and modification are not
|
||||
covered by this License; they are outside its scope. The act of
|
||||
running the Program is not restricted, and the output from the Program
|
||||
is covered only if its contents constitute a work based on the
|
||||
Program (independent of having been made by running the Program).
|
||||
Whether that is true depends on what the Program does.
|
||||
|
||||
1. You may copy and distribute verbatim copies of the Program's
|
||||
source code as you receive it, in any medium, provided that you
|
||||
conspicuously and appropriately publish on each copy an appropriate
|
||||
copyright notice and disclaimer of warranty; keep intact all the
|
||||
notices that refer to this License and to the absence of any warranty;
|
||||
and give any other recipients of the Program a copy of this License
|
||||
along with the Program.
|
||||
|
||||
You may charge a fee for the physical act of transferring a copy, and
|
||||
you may at your option offer warranty protection in exchange for a fee.
|
||||
|
||||
2. You may modify your copy or copies of the Program or any portion
|
||||
of it, thus forming a work based on the Program, and copy and
|
||||
distribute such modifications or work under the terms of Section 1
|
||||
above, provided that you also meet all of these conditions:
|
||||
|
||||
a) You must cause the modified files to carry prominent notices
|
||||
stating that you changed the files and the date of any change.
|
||||
|
||||
b) You must cause any work that you distribute or publish, that in
|
||||
whole or in part contains or is derived from the Program or any
|
||||
part thereof, to be licensed as a whole at no charge to all third
|
||||
parties under the terms of this License.
|
||||
|
||||
c) If the modified program normally reads commands interactively
|
||||
when run, you must cause it, when started running for such
|
||||
interactive use in the most ordinary way, to print or display an
|
||||
announcement including an appropriate copyright notice and a
|
||||
notice that there is no warranty (or else, saying that you provide
|
||||
a warranty) and that users may redistribute the program under
|
||||
these conditions, and telling the user how to view a copy of this
|
||||
License. (Exception: if the Program itself is interactive but
|
||||
does not normally print such an announcement, your work based on
|
||||
the Program is not required to print an announcement.)
|
||||
|
||||
These requirements apply to the modified work as a whole. If
|
||||
identifiable sections of that work are not derived from the Program,
|
||||
and can be reasonably considered independent and separate works in
|
||||
themselves, then this License, and its terms, do not apply to those
|
||||
sections when you distribute them as separate works. But when you
|
||||
distribute the same sections as part of a whole which is a work based
|
||||
on the Program, the distribution of the whole must be on the terms of
|
||||
this License, whose permissions for other licensees extend to the
|
||||
entire whole, and thus to each and every part regardless of who wrote it.
|
||||
|
||||
Thus, it is not the intent of this section to claim rights or contest
|
||||
your rights to work written entirely by you; rather, the intent is to
|
||||
exercise the right to control the distribution of derivative or
|
||||
collective works based on the Program.
|
||||
|
||||
In addition, mere aggregation of another work not based on the Program
|
||||
with the Program (or with a work based on the Program) on a volume of
|
||||
a storage or distribution medium does not bring the other work under
|
||||
the scope of this License.
|
||||
|
||||
3. You may copy and distribute the Program (or a work based on it,
|
||||
under Section 2) in object code or executable form under the terms of
|
||||
Sections 1 and 2 above provided that you also do one of the following:
|
||||
|
||||
a) Accompany it with the complete corresponding machine-readable
|
||||
source code, which must be distributed under the terms of Sections
|
||||
1 and 2 above on a medium customarily used for software interchange; or,
|
||||
|
||||
b) Accompany it with a written offer, valid for at least three
|
||||
years, to give any third party, for a charge no more than your
|
||||
cost of physically performing source distribution, a complete
|
||||
machine-readable copy of the corresponding source code, to be
|
||||
distributed under the terms of Sections 1 and 2 above on a medium
|
||||
customarily used for software interchange; or,
|
||||
|
||||
c) Accompany it with the information you received as to the offer
|
||||
to distribute corresponding source code. (This alternative is
|
||||
allowed only for noncommercial distribution and only if you
|
||||
received the program in object code or executable form with such
|
||||
an offer, in accord with Subsection b above.)
|
||||
|
||||
The source code for a work means the preferred form of the work for
|
||||
making modifications to it. For an executable work, complete source
|
||||
code means all the source code for all modules it contains, plus any
|
||||
associated interface definition files, plus the scripts used to
|
||||
control compilation and installation of the executable. However, as a
|
||||
special exception, the source code distributed need not include
|
||||
anything that is normally distributed (in either source or binary
|
||||
form) with the major components (compiler, kernel, and so on) of the
|
||||
operating system on which the executable runs, unless that component
|
||||
itself accompanies the executable.
|
||||
|
||||
If distribution of executable or object code is made by offering
|
||||
access to copy from a designated place, then offering equivalent
|
||||
access to copy the source code from the same place counts as
|
||||
distribution of the source code, even though third parties are not
|
||||
compelled to copy the source along with the object code.
|
||||
|
||||
4. You may not copy, modify, sublicense, or distribute the Program
|
||||
except as expressly provided under this License. Any attempt
|
||||
otherwise to copy, modify, sublicense or distribute the Program is
|
||||
void, and will automatically terminate your rights under this License.
|
||||
However, parties who have received copies, or rights, from you under
|
||||
this License will not have their licenses terminated so long as such
|
||||
parties remain in full compliance.
|
||||
|
||||
5. You are not required to accept this License, since you have not
|
||||
signed it. However, nothing else grants you permission to modify or
|
||||
distribute the Program or its derivative works. These actions are
|
||||
prohibited by law if you do not accept this License. Therefore, by
|
||||
modifying or distributing the Program (or any work based on the
|
||||
Program), you indicate your acceptance of this License to do so, and
|
||||
all its terms and conditions for copying, distributing or modifying
|
||||
the Program or works based on it.
|
||||
|
||||
6. Each time you redistribute the Program (or any work based on the
|
||||
Program), the recipient automatically receives a license from the
|
||||
original licensor to copy, distribute or modify the Program subject to
|
||||
these terms and conditions. You may not impose any further
|
||||
restrictions on the recipients' exercise of the rights granted herein.
|
||||
You are not responsible for enforcing compliance by third parties to
|
||||
this License.
|
||||
|
||||
7. If, as a consequence of a court judgment or allegation of patent
|
||||
infringement or for any other reason (not limited to patent issues),
|
||||
conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot
|
||||
distribute so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you
|
||||
may not distribute the Program at all. For example, if a patent
|
||||
license would not permit royalty-free redistribution of the Program by
|
||||
all those who receive copies directly or indirectly through you, then
|
||||
the only way you could satisfy both it and this License would be to
|
||||
refrain entirely from distribution of the Program.
|
||||
|
||||
If any portion of this section is held invalid or unenforceable under
|
||||
any particular circumstance, the balance of the section is intended to
|
||||
apply and the section as a whole is intended to apply in other
|
||||
circumstances.
|
||||
|
||||
It is not the purpose of this section to induce you to infringe any
|
||||
patents or other property right claims or to contest validity of any
|
||||
such claims; this section has the sole purpose of protecting the
|
||||
integrity of the free software distribution system, which is
|
||||
implemented by public license practices. Many people have made
|
||||
generous contributions to the wide range of software distributed
|
||||
through that system in reliance on consistent application of that
|
||||
system; it is up to the author/donor to decide if he or she is willing
|
||||
to distribute software through any other system and a licensee cannot
|
||||
impose that choice.
|
||||
|
||||
This section is intended to make thoroughly clear what is believed to
|
||||
be a consequence of the rest of this License.
|
||||
|
||||
8. If the distribution and/or use of the Program is restricted in
|
||||
certain countries either by patents or by copyrighted interfaces, the
|
||||
original copyright holder who places the Program under this License
|
||||
may add an explicit geographical distribution limitation excluding
|
||||
those countries, so that distribution is permitted only in or among
|
||||
countries not thus excluded. In such case, this License incorporates
|
||||
the limitation as if written in the body of this License.
|
||||
|
||||
9. The Free Software Foundation may publish revised and/or new versions
|
||||
of the General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program
|
||||
specifies a version number of this License which applies to it and "any
|
||||
later version", you have the option of following the terms and conditions
|
||||
either of that version or of any later version published by the Free
|
||||
Software Foundation. If the Program does not specify a version number of
|
||||
this License, you may choose any version ever published by the Free Software
|
||||
Foundation.
|
||||
|
||||
10. If you wish to incorporate parts of the Program into other free
|
||||
programs whose distribution conditions are different, write to the author
|
||||
to ask for permission. For software which is copyrighted by the Free
|
||||
Software Foundation, write to the Free Software Foundation; we sometimes
|
||||
make exceptions for this. Our decision will be guided by the two goals
|
||||
of preserving the free status of all derivatives of our free software and
|
||||
of promoting the sharing and reuse of software generally.
|
||||
|
||||
NO WARRANTY
|
||||
|
||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
||||
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
||||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
||||
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
||||
REPAIR OR CORRECTION.
|
||||
|
||||
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
||||
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
||||
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
||||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
||||
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||
POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
convey the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program is interactive, make it output a short notice like this
|
||||
when it starts in an interactive mode:
|
||||
|
||||
Gnomovision version 69, Copyright (C) year name of author
|
||||
Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, the commands you use may
|
||||
be called something other than `show w' and `show c'; they could even be
|
||||
mouse-clicks or menu items--whatever suits your program.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or your
|
||||
school, if any, to sign a "copyright disclaimer" for the program, if
|
||||
necessary. Here is a sample; alter the names:
|
||||
|
||||
Yoyodyne, Inc., hereby disclaims all copyright interest in the program
|
||||
`Gnomovision' (which makes passes at compilers) written by James Hacker.
|
||||
|
||||
<signature of Ty Coon>, 1 April 1989
|
||||
Ty Coon, President of Vice
|
||||
|
||||
This General Public License does not permit incorporating your program into
|
||||
proprietary programs. If your program is a subroutine library, you may
|
||||
consider it more useful to permit linking proprietary applications with the
|
||||
library. If this is what you want to do, use the GNU Library General
|
||||
Public License instead of this License.
|
|
@ -0,0 +1,368 @@
|
|||
Installation Instructions
|
||||
*************************
|
||||
|
||||
Copyright (C) 1994-1996, 1999-2002, 2004-2016 Free Software
|
||||
Foundation, Inc.
|
||||
|
||||
Copying and distribution of this file, with or without modification,
|
||||
are permitted in any medium without royalty provided the copyright
|
||||
notice and this notice are preserved. This file is offered as-is,
|
||||
without warranty of any kind.
|
||||
|
||||
Basic Installation
|
||||
==================
|
||||
|
||||
Briefly, the shell command './configure && make && make install'
|
||||
should configure, build, and install this package. The following
|
||||
more-detailed instructions are generic; see the 'README' file for
|
||||
instructions specific to this package. Some packages provide this
|
||||
'INSTALL' file but do not implement all of the features documented
|
||||
below. The lack of an optional feature in a given package is not
|
||||
necessarily a bug. More recommendations for GNU packages can be found
|
||||
in *note Makefile Conventions: (standards)Makefile Conventions.
|
||||
|
||||
The 'configure' shell script attempts to guess correct values for
|
||||
various system-dependent variables used during compilation. It uses
|
||||
those values to create a 'Makefile' in each directory of the package.
|
||||
It may also create one or more '.h' files containing system-dependent
|
||||
definitions. Finally, it creates a shell script 'config.status' that
|
||||
you can run in the future to recreate the current configuration, and a
|
||||
file 'config.log' containing compiler output (useful mainly for
|
||||
debugging 'configure').
|
||||
|
||||
It can also use an optional file (typically called 'config.cache' and
|
||||
enabled with '--cache-file=config.cache' or simply '-C') that saves the
|
||||
results of its tests to speed up reconfiguring. Caching is disabled by
|
||||
default to prevent problems with accidental use of stale cache files.
|
||||
|
||||
If you need to do unusual things to compile the package, please try
|
||||
to figure out how 'configure' could check whether to do them, and mail
|
||||
diffs or instructions to the address given in the 'README' so they can
|
||||
be considered for the next release. If you are using the cache, and at
|
||||
some point 'config.cache' contains results you don't want to keep, you
|
||||
may remove or edit it.
|
||||
|
||||
The file 'configure.ac' (or 'configure.in') is used to create
|
||||
'configure' by a program called 'autoconf'. You need 'configure.ac' if
|
||||
you want to change it or regenerate 'configure' using a newer version of
|
||||
'autoconf'.
|
||||
|
||||
The simplest way to compile this package is:
|
||||
|
||||
1. 'cd' to the directory containing the package's source code and type
|
||||
'./configure' to configure the package for your system.
|
||||
|
||||
Running 'configure' might take a while. While running, it prints
|
||||
some messages telling which features it is checking for.
|
||||
|
||||
2. Type 'make' to compile the package.
|
||||
|
||||
3. Optionally, type 'make check' to run any self-tests that come with
|
||||
the package, generally using the just-built uninstalled binaries.
|
||||
|
||||
4. Type 'make install' to install the programs and any data files and
|
||||
documentation. When installing into a prefix owned by root, it is
|
||||
recommended that the package be configured and built as a regular
|
||||
user, and only the 'make install' phase executed with root
|
||||
privileges.
|
||||
|
||||
5. Optionally, type 'make installcheck' to repeat any self-tests, but
|
||||
this time using the binaries in their final installed location.
|
||||
This target does not install anything. Running this target as a
|
||||
regular user, particularly if the prior 'make install' required
|
||||
root privileges, verifies that the installation completed
|
||||
correctly.
|
||||
|
||||
6. You can remove the program binaries and object files from the
|
||||
source code directory by typing 'make clean'. To also remove the
|
||||
files that 'configure' created (so you can compile the package for
|
||||
a different kind of computer), type 'make distclean'. There is
|
||||
also a 'make maintainer-clean' target, but that is intended mainly
|
||||
for the package's developers. If you use it, you may have to get
|
||||
all sorts of other programs in order to regenerate files that came
|
||||
with the distribution.
|
||||
|
||||
7. Often, you can also type 'make uninstall' to remove the installed
|
||||
files again. In practice, not all packages have tested that
|
||||
uninstallation works correctly, even though it is required by the
|
||||
GNU Coding Standards.
|
||||
|
||||
8. Some packages, particularly those that use Automake, provide 'make
|
||||
distcheck', which can by used by developers to test that all other
|
||||
targets like 'make install' and 'make uninstall' work correctly.
|
||||
This target is generally not run by end users.
|
||||
|
||||
Compilers and Options
|
||||
=====================
|
||||
|
||||
Some systems require unusual options for compilation or linking that
|
||||
the 'configure' script does not know about. Run './configure --help'
|
||||
for details on some of the pertinent environment variables.
|
||||
|
||||
You can give 'configure' initial values for configuration parameters
|
||||
by setting variables in the command line or in the environment. Here is
|
||||
an example:
|
||||
|
||||
./configure CC=c99 CFLAGS=-g LIBS=-lposix
|
||||
|
||||
*Note Defining Variables::, for more details.
|
||||
|
||||
Compiling For Multiple Architectures
|
||||
====================================
|
||||
|
||||
You can compile the package for more than one kind of computer at the
|
||||
same time, by placing the object files for each architecture in their
|
||||
own directory. To do this, you can use GNU 'make'. 'cd' to the
|
||||
directory where you want the object files and executables to go and run
|
||||
the 'configure' script. 'configure' automatically checks for the source
|
||||
code in the directory that 'configure' is in and in '..'. This is known
|
||||
as a "VPATH" build.
|
||||
|
||||
With a non-GNU 'make', it is safer to compile the package for one
|
||||
architecture at a time in the source code directory. After you have
|
||||
installed the package for one architecture, use 'make distclean' before
|
||||
reconfiguring for another architecture.
|
||||
|
||||
On MacOS X 10.5 and later systems, you can create libraries and
|
||||
executables that work on multiple system types--known as "fat" or
|
||||
"universal" binaries--by specifying multiple '-arch' options to the
|
||||
compiler but only a single '-arch' option to the preprocessor. Like
|
||||
this:
|
||||
|
||||
./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
|
||||
CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
|
||||
CPP="gcc -E" CXXCPP="g++ -E"
|
||||
|
||||
This is not guaranteed to produce working output in all cases, you
|
||||
may have to build one architecture at a time and combine the results
|
||||
using the 'lipo' tool if you have problems.
|
||||
|
||||
Installation Names
|
||||
==================
|
||||
|
||||
By default, 'make install' installs the package's commands under
|
||||
'/usr/local/bin', include files under '/usr/local/include', etc. You
|
||||
can specify an installation prefix other than '/usr/local' by giving
|
||||
'configure' the option '--prefix=PREFIX', where PREFIX must be an
|
||||
absolute file name.
|
||||
|
||||
You can specify separate installation prefixes for
|
||||
architecture-specific files and architecture-independent files. If you
|
||||
pass the option '--exec-prefix=PREFIX' to 'configure', the package uses
|
||||
PREFIX as the prefix for installing programs and libraries.
|
||||
Documentation and other data files still use the regular prefix.
|
||||
|
||||
In addition, if you use an unusual directory layout you can give
|
||||
options like '--bindir=DIR' to specify different values for particular
|
||||
kinds of files. Run 'configure --help' for a list of the directories
|
||||
you can set and what kinds of files go in them. In general, the default
|
||||
for these options is expressed in terms of '${prefix}', so that
|
||||
specifying just '--prefix' will affect all of the other directory
|
||||
specifications that were not explicitly provided.
|
||||
|
||||
The most portable way to affect installation locations is to pass the
|
||||
correct locations to 'configure'; however, many packages provide one or
|
||||
both of the following shortcuts of passing variable assignments to the
|
||||
'make install' command line to change installation locations without
|
||||
having to reconfigure or recompile.
|
||||
|
||||
The first method involves providing an override variable for each
|
||||
affected directory. For example, 'make install
|
||||
prefix=/alternate/directory' will choose an alternate location for all
|
||||
directory configuration variables that were expressed in terms of
|
||||
'${prefix}'. Any directories that were specified during 'configure',
|
||||
but not in terms of '${prefix}', must each be overridden at install time
|
||||
for the entire installation to be relocated. The approach of makefile
|
||||
variable overrides for each directory variable is required by the GNU
|
||||
Coding Standards, and ideally causes no recompilation. However, some
|
||||
platforms have known limitations with the semantics of shared libraries
|
||||
that end up requiring recompilation when using this method, particularly
|
||||
noticeable in packages that use GNU Libtool.
|
||||
|
||||
The second method involves providing the 'DESTDIR' variable. For
|
||||
example, 'make install DESTDIR=/alternate/directory' will prepend
|
||||
'/alternate/directory' before all installation names. The approach of
|
||||
'DESTDIR' overrides is not required by the GNU Coding Standards, and
|
||||
does not work on platforms that have drive letters. On the other hand,
|
||||
it does better at avoiding recompilation issues, and works well even
|
||||
when some directory options were not specified in terms of '${prefix}'
|
||||
at 'configure' time.
|
||||
|
||||
Optional Features
|
||||
=================
|
||||
|
||||
If the package supports it, you can cause programs to be installed
|
||||
with an extra prefix or suffix on their names by giving 'configure' the
|
||||
option '--program-prefix=PREFIX' or '--program-suffix=SUFFIX'.
|
||||
|
||||
Some packages pay attention to '--enable-FEATURE' options to
|
||||
'configure', where FEATURE indicates an optional part of the package.
|
||||
They may also pay attention to '--with-PACKAGE' options, where PACKAGE
|
||||
is something like 'gnu-as' or 'x' (for the X Window System). The
|
||||
'README' should mention any '--enable-' and '--with-' options that the
|
||||
package recognizes.
|
||||
|
||||
For packages that use the X Window System, 'configure' can usually
|
||||
find the X include and library files automatically, but if it doesn't,
|
||||
you can use the 'configure' options '--x-includes=DIR' and
|
||||
'--x-libraries=DIR' to specify their locations.
|
||||
|
||||
Some packages offer the ability to configure how verbose the
|
||||
execution of 'make' will be. For these packages, running './configure
|
||||
--enable-silent-rules' sets the default to minimal output, which can be
|
||||
overridden with 'make V=1'; while running './configure
|
||||
--disable-silent-rules' sets the default to verbose, which can be
|
||||
overridden with 'make V=0'.
|
||||
|
||||
Particular systems
|
||||
==================
|
||||
|
||||
On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC
|
||||
is not installed, it is recommended to use the following options in
|
||||
order to use an ANSI C compiler:
|
||||
|
||||
./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
|
||||
|
||||
and if that doesn't work, install pre-built binaries of GCC for HP-UX.
|
||||
|
||||
HP-UX 'make' updates targets which have the same time stamps as their
|
||||
prerequisites, which makes it generally unusable when shipped generated
|
||||
files such as 'configure' are involved. Use GNU 'make' instead.
|
||||
|
||||
On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
|
||||
parse its '<wchar.h>' header file. The option '-nodtk' can be used as a
|
||||
workaround. If GNU CC is not installed, it is therefore recommended to
|
||||
try
|
||||
|
||||
./configure CC="cc"
|
||||
|
||||
and if that doesn't work, try
|
||||
|
||||
./configure CC="cc -nodtk"
|
||||
|
||||
On Solaris, don't put '/usr/ucb' early in your 'PATH'. This
|
||||
directory contains several dysfunctional programs; working variants of
|
||||
these programs are available in '/usr/bin'. So, if you need '/usr/ucb'
|
||||
in your 'PATH', put it _after_ '/usr/bin'.
|
||||
|
||||
On Haiku, software installed for all users goes in '/boot/common',
|
||||
not '/usr/local'. It is recommended to use the following options:
|
||||
|
||||
./configure --prefix=/boot/common
|
||||
|
||||
Specifying the System Type
|
||||
==========================
|
||||
|
||||
There may be some features 'configure' cannot figure out
|
||||
automatically, but needs to determine by the type of machine the package
|
||||
will run on. Usually, assuming the package is built to be run on the
|
||||
_same_ architectures, 'configure' can figure that out, but if it prints
|
||||
a message saying it cannot guess the machine type, give it the
|
||||
'--build=TYPE' option. TYPE can either be a short name for the system
|
||||
type, such as 'sun4', or a canonical name which has the form:
|
||||
|
||||
CPU-COMPANY-SYSTEM
|
||||
|
||||
where SYSTEM can have one of these forms:
|
||||
|
||||
OS
|
||||
KERNEL-OS
|
||||
|
||||
See the file 'config.sub' for the possible values of each field. If
|
||||
'config.sub' isn't included in this package, then this package doesn't
|
||||
need to know the machine type.
|
||||
|
||||
If you are _building_ compiler tools for cross-compiling, you should
|
||||
use the option '--target=TYPE' to select the type of system they will
|
||||
produce code for.
|
||||
|
||||
If you want to _use_ a cross compiler, that generates code for a
|
||||
platform different from the build platform, you should specify the
|
||||
"host" platform (i.e., that on which the generated programs will
|
||||
eventually be run) with '--host=TYPE'.
|
||||
|
||||
Sharing Defaults
|
||||
================
|
||||
|
||||
If you want to set default values for 'configure' scripts to share,
|
||||
you can create a site shell script called 'config.site' that gives
|
||||
default values for variables like 'CC', 'cache_file', and 'prefix'.
|
||||
'configure' looks for 'PREFIX/share/config.site' if it exists, then
|
||||
'PREFIX/etc/config.site' if it exists. Or, you can set the
|
||||
'CONFIG_SITE' environment variable to the location of the site script.
|
||||
A warning: not all 'configure' scripts look for a site script.
|
||||
|
||||
Defining Variables
|
||||
==================
|
||||
|
||||
Variables not defined in a site shell script can be set in the
|
||||
environment passed to 'configure'. However, some packages may run
|
||||
configure again during the build, and the customized values of these
|
||||
variables may be lost. In order to avoid this problem, you should set
|
||||
them in the 'configure' command line, using 'VAR=value'. For example:
|
||||
|
||||
./configure CC=/usr/local2/bin/gcc
|
||||
|
||||
causes the specified 'gcc' to be used as the C compiler (unless it is
|
||||
overridden in the site shell script).
|
||||
|
||||
Unfortunately, this technique does not work for 'CONFIG_SHELL' due to an
|
||||
Autoconf limitation. Until the limitation is lifted, you can use this
|
||||
workaround:
|
||||
|
||||
CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
|
||||
|
||||
'configure' Invocation
|
||||
======================
|
||||
|
||||
'configure' recognizes the following options to control how it
|
||||
operates.
|
||||
|
||||
'--help'
|
||||
'-h'
|
||||
Print a summary of all of the options to 'configure', and exit.
|
||||
|
||||
'--help=short'
|
||||
'--help=recursive'
|
||||
Print a summary of the options unique to this package's
|
||||
'configure', and exit. The 'short' variant lists options used only
|
||||
in the top level, while the 'recursive' variant lists options also
|
||||
present in any nested packages.
|
||||
|
||||
'--version'
|
||||
'-V'
|
||||
Print the version of Autoconf used to generate the 'configure'
|
||||
script, and exit.
|
||||
|
||||
'--cache-file=FILE'
|
||||
Enable the cache: use and save the results of the tests in FILE,
|
||||
traditionally 'config.cache'. FILE defaults to '/dev/null' to
|
||||
disable caching.
|
||||
|
||||
'--config-cache'
|
||||
'-C'
|
||||
Alias for '--cache-file=config.cache'.
|
||||
|
||||
'--quiet'
|
||||
'--silent'
|
||||
'-q'
|
||||
Do not print messages saying which checks are being made. To
|
||||
suppress all normal output, redirect it to '/dev/null' (any error
|
||||
messages will still be shown).
|
||||
|
||||
'--srcdir=DIR'
|
||||
Look for the package's source code in directory DIR. Usually
|
||||
'configure' can determine that directory automatically.
|
||||
|
||||
'--prefix=DIR'
|
||||
Use DIR as the installation prefix. *note Installation Names:: for
|
||||
more details, including other options available for fine-tuning the
|
||||
installation locations.
|
||||
|
||||
'--no-create'
|
||||
'-n'
|
||||
Run the configure checks, but stop before creating any output
|
||||
files.
|
||||
|
||||
'configure' also accepts some other, not widely useful, options. Run
|
||||
'configure --help' for more details.
|
|
@ -0,0 +1,168 @@
|
|||
#
|
||||
# Work-in-progress...
|
||||
# See https://bugzilla.gnome.org/show_bug.cgi?id=654395
|
||||
|
||||
_GLIB_CLEANFILES =
|
||||
_GLIB_DISTCLEANFILES =
|
||||
|
||||
_GLIB_V_GEN = $(_glib_v_gen_$(V))
|
||||
_glib_v_gen_ = $(_glib_v_gen_$(AM_DEFAULT_VERBOSITY))
|
||||
_glib_v_gen_0 = @echo " GEN " $(subst .stamp,,$@);
|
||||
|
||||
|
||||
### glib-genmarshal
|
||||
|
||||
_GLIB_MARSHAL_GENERATED = $(subst .h,,$(filter %marshal.h,$(GLIB_GENERATED)))
|
||||
|
||||
_glib_marshal_prefix = $(subst marshal,,$(subst _marshal,,$(subst -,_,$(notdir $(1)))))_marshal
|
||||
_glib_marshal_sources_var = $(subst -,_,$(notdir $(1)))_sources
|
||||
_glib_marshal_sources = $(filter-out %.h,$(filter-out $(GLIB_GENERATED),$($(_glib_marshal_sources_var))))
|
||||
|
||||
define _glib_make_genmarshal_rules
|
||||
$(if $(_glib_marshal_sources),,$(error Need to define $(_glib_marshal_sources_var) for $(1).[ch]))
|
||||
|
||||
$(1).list.stamp: $(_glib_marshal_sources)
|
||||
$$(_GLIB_V_GEN) LC_ALL=C sed -ne 's/.*_$(_glib_marshal_prefix)_\([_A-Z]*\).*/\1/p' $$^ | sort -u | sed -e 's/__/:/' -e 's/_/,/g' > $(1).list.tmp && \
|
||||
(cmp -s $(1).list.tmp $(1).list || cp $(1).list.tmp $(1).list) && \
|
||||
rm -f $(1).list.tmp && \
|
||||
echo timestamp > $$@
|
||||
|
||||
$(1).list: $(1).list.stamp
|
||||
@true
|
||||
|
||||
$(1).h: $(1).list
|
||||
$$(_GLIB_V_GEN) $$(GLIB_GENMARSHAL) \
|
||||
--prefix=_$(_glib_marshal_prefix) --header \
|
||||
$$(GLIB_GENMARSHAL_H_FLAGS) \
|
||||
$$($(_glib_marshal_prefix)_GENMARSHAL_H_FLAGS) \
|
||||
$$< > $$@.tmp && \
|
||||
mv $$@.tmp $$@
|
||||
|
||||
$(1).c: $(1).list
|
||||
$$(_GLIB_V_GEN) (echo "#include \"$$(subst .c,.h,$$(@F))\""; $$(GLIB_GENMARSHAL) \
|
||||
--prefix=_$(_glib_marshal_prefix) --body \
|
||||
$$(GLIB_GENMARSHAL_C_FLAGS) \
|
||||
$$($(_glib_marshal_prefix)_GENMARSHAL_C_FLAGS) \
|
||||
$$< ) > $$@.tmp && \
|
||||
mv $$@.tmp $$@
|
||||
|
||||
_GLIB_CLEANFILES += $(1).list.stamp $(1).list
|
||||
_GLIB_DISTCLEANFILES += $(1).h $(1).c
|
||||
endef
|
||||
|
||||
$(foreach f,$(_GLIB_MARSHAL_GENERATED),$(eval $(call _glib_make_genmarshal_rules,$f)))
|
||||
|
||||
|
||||
### glib-mkenums
|
||||
|
||||
_GLIB_ENUM_TYPES_GENERATED = $(subst .h,,$(filter %enum-types.h %enumtypes.h,$(GLIB_GENERATED)))
|
||||
|
||||
_glib_enum_types_prefix = $(subst -,_,$(notdir $(1)))
|
||||
_glib_enum_types_guard = __$(shell LC_ALL=C echo $(_glib_enum_types_prefix) | tr 'a-z' 'A-Z')_H__
|
||||
_glib_enum_types_sources_var = $(_glib_enum_types_prefix)_sources
|
||||
_glib_enum_types_sources = $(filter-out $(GLIB_GENERATED),$($(_glib_enum_types_sources_var)))
|
||||
_glib_enum_types_h_sources = $(filter %.h,$(_glib_enum_types_sources))
|
||||
|
||||
define _glib_make_mkenums_rules
|
||||
$(if $(_glib_enum_types_sources),,$(error Need to define $(_glib_enum_types_sources_var) for $(1).[ch]))
|
||||
|
||||
$(1).h.stamp: $(_glib_enum_types_h_sources)
|
||||
$$(_GLIB_V_GEN) $$(GLIB_MKENUMS) \
|
||||
--fhead "/* Generated by glib-mkenums. Do not edit */\n\n#ifndef $(_glib_enum_types_guard)\n#define $(_glib_enum_types_guard)\n\n" \
|
||||
$$(GLIB_MKENUMS_H_FLAGS) \
|
||||
$$($(_glib_enum_types_prefix)_MKENUMS_H_FLAGS) \
|
||||
--fhead "#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \
|
||||
--vhead "GType @enum_name@_get_type (void) G_GNUC_CONST;\n#define @ENUMPREFIX@_TYPE_@ENUMSHORT@ (@enum_name@_get_type ())\n" \
|
||||
--ftail "G_END_DECLS\n\n#endif /* $(_glib_enum_types_guard) */" \
|
||||
$$^ > $(1).h.tmp && \
|
||||
(cmp -s $(1).h.tmp $(1).h || cp $(1).h.tmp $(1).h) && \
|
||||
rm -f $(1).h.tmp && \
|
||||
echo timestamp > $$@
|
||||
|
||||
$(1).h: $(1).h.stamp
|
||||
@true
|
||||
|
||||
$(1).c.stamp: $(_glib_enum_types_h_sources)
|
||||
$$(_GLIB_V_GEN) $$(GLIB_MKENUMS) \
|
||||
--fhead "/* Generated by glib-mkenums. Do not edit */\n\n#include \"$(notdir $(1)).h\"\n" \
|
||||
$$(GLIB_MKENUMS_C_FLAGS) \
|
||||
$$($(_glib_enum_types_prefix)_MKENUMS_C_FLAGS) \
|
||||
--fhead "$$(foreach f,$$(^F),\n#include \"$$(f)\")\n\n" \
|
||||
--vhead "GType\n@enum_name@_get_type (void)\n{\n static volatile gsize g_define_type_id__volatile = 0;\n\n if (g_once_init_enter (&g_define_type_id__volatile))\n {\n static const G@Type@Value values[] = {\n" \
|
||||
--vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" },\n" \
|
||||
--vtail " { 0, NULL, NULL }\n };\n GType g_define_type_id =\n g_@type@_register_static (g_intern_static_string (\"@EnumName@\"), values);\n g_once_init_leave (&g_define_type_id__volatile, g_define_type_id);\n }\n\n return g_define_type_id__volatile;\n}\n" \
|
||||
$$^ > $(1).c.tmp && \
|
||||
(cmp -s $(1).c.tmp $(1).c || cp $(1).c.tmp $(1).c) && \
|
||||
rm -f $(1).c.tmp && \
|
||||
echo timestamp > $$@
|
||||
|
||||
$(1).c: $(1).c.stamp
|
||||
@true
|
||||
|
||||
_GLIB_CLEANFILES += $(1).h.stamp $(1).c.stamp
|
||||
_GLIB_DISTCLEANFILES += $(1).h $(1).c $(1).h.stamp $(1).c.stamp
|
||||
endef
|
||||
|
||||
$(foreach f,$(_GLIB_ENUM_TYPES_GENERATED),$(eval $(call _glib_make_mkenums_rules,$f)))
|
||||
|
||||
|
||||
### glib-compile-schemas
|
||||
|
||||
_GLIB_ENUMS_XML_GENERATED = $(filter %.enums.xml,$(GLIB_GENERATED))
|
||||
_GLIB_GSETTINGS_SCHEMA_FILES = $(filter %.gschema.xml,$(gsettingsschema_DATA))
|
||||
_GLIB_GSETTINGS_VALID_FILES = $(subst .xml,.valid,$(_GLIB_GSETTINGS_SCHEMA_FILES))
|
||||
|
||||
_glib_enums_xml_prefix = $(subst .,_,$(notdir $(1)))
|
||||
_glib_enums_xml_sources_var = $(_glib_enums_xml_prefix)_sources
|
||||
_glib_enums_xml_sources = $(filter-out $(GLIB_GENERATED),$($(_glib_enums_xml_sources_var)))
|
||||
_glib_enums_xml_namespace = $(subst .enums.xml,,$(notdir $(1)))
|
||||
|
||||
define _glib_make_enums_xml_rule
|
||||
$(if $(_glib_enums_xml_sources),,$(error Need to define $(_glib_enums_xml_sources_var) for $(1)))
|
||||
|
||||
$(1): $(_glib_enums_xml_sources)
|
||||
$$(_GLIB_V_GEN) $$(GLIB_MKENUMS) --comments '<!-- @comment@ -->' --fhead "<schemalist>" --vhead " <@type@ id='$(_glib_enums_xml_namespace).@EnumName@'>" --vprod " <value nick='@valuenick@' value='@valuenum@'/>" --vtail " </@type@>" --ftail "</schemalist>" $$^ > $$@.tmp && mv $$@.tmp $$@
|
||||
endef
|
||||
|
||||
_GLIB_V_CHECK = $(_glib_v_check_$(V))
|
||||
_glib_v_check_ = $(_glib_v_check_$(AM_DEFAULT_VERBOSITY))
|
||||
_glib_v_check_0 = @echo " CHECK " $(subst .valid,.xml,$@);
|
||||
|
||||
define _glib_make_schema_validate_rule
|
||||
$(subst .xml,.valid,$(1)): $(_GLIB_ENUMS_XML_GENERATED) $(1)
|
||||
$$(_GLIB_V_CHECK) $$(GLIB_COMPILE_SCHEMAS) --strict --dry-run $$(addprefix --schema-file=,$$^) && touch $$@
|
||||
endef
|
||||
|
||||
define _glib_make_schema_rules
|
||||
all-am: $(_GLIB_GSETTINGS_VALID_FILES)
|
||||
|
||||
install-data-am: glib-install-schemas-hook
|
||||
|
||||
glib-install-schemas-hook: install-gsettingsschemaDATA
|
||||
@test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || (echo $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir); $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir))
|
||||
|
||||
uninstall-am: glib-uninstall-schemas-hook
|
||||
|
||||
glib-uninstall-schemas-hook: uninstall-gsettingsschemaDATA
|
||||
@test -n "$(GSETTINGS_DISABLE_SCHEMAS_COMPILE)$(DESTDIR)" || (echo $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir); $(GLIB_COMPILE_SCHEMAS) $(gsettingsschemadir))
|
||||
|
||||
.PHONY: glib-install-schemas-hook glib-uninstall-schemas-hook
|
||||
endef
|
||||
|
||||
_GLIB_CLEANFILES += $(_GLIB_ENUMS_XML_GENERATED) $(_GLIB_GSETTINGS_VALID_FILES)
|
||||
|
||||
$(foreach f,$(_GLIB_ENUMS_XML_GENERATED),$(eval $(call _glib_make_enums_xml_rule,$f)))
|
||||
$(foreach f,$(_GLIB_GSETTINGS_SCHEMA_FILES),$(eval $(call _glib_make_schema_validate_rule,$f)))
|
||||
$(if $(_GLIB_GSETTINGS_SCHEMA_FILES),$(eval $(_glib_make_schema_rules)))
|
||||
|
||||
|
||||
### Cleanup
|
||||
.PHONY: clean-glib distclean-glib
|
||||
|
||||
clean-am: clean-glib
|
||||
clean-glib:
|
||||
$(if $(strip $(_GLIB_CLEANFILES)),-rm -f $(_GLIB_CLEANFILES))
|
||||
|
||||
distclean-am: distclean-glib
|
||||
distclean-glib:
|
||||
$(if $(strip $(_GLIB_DISTCLEANFILES)),-rm -f $(_GLIB_DISTCLEANFILES))
|
|
@ -0,0 +1,401 @@
|
|||
=======================================================
|
||||
network-manager-applet-1.8.24
|
||||
Overview of changes since network-manager-applet-1.8.22
|
||||
=======================================================
|
||||
|
||||
* Fixed external UI mode without interactive secrets.
|
||||
* Ad-Hoc networks now support WPA2 authentication.
|
||||
* Support for SAE authentication (WPA3 Personal) was added.
|
||||
* Fixed applet operation on graphical servers other than X11 (such as
|
||||
Wayland).
|
||||
* Various other bug fixes and enhancements.
|
||||
* Added EXPERIMENTAL libnma-gtk4 library for use with GTK4.
|
||||
Not recommended for production use!
|
||||
* Updated translations.
|
||||
|
||||
=======================================================
|
||||
network-manager-applet-1.8.22
|
||||
Overview of changes since network-manager-applet-1.8.20
|
||||
=======================================================
|
||||
|
||||
* The applet's secret agent can now utilize external UI mode for VPN plugins
|
||||
that support it.
|
||||
* The Wi-Fi-related items in the applet menu are now sorted more reasonably.
|
||||
* Various improvements to the Mobile Wizard and Certificate Chooser
|
||||
usability.
|
||||
* Render a QR code in the applet's connection info dialog.
|
||||
* Improved the applet's info dialog appearance.
|
||||
* Updated translations.
|
||||
|
||||
=======================================================
|
||||
network-manager-applet-1.8.20
|
||||
Overview of changes since network-manager-applet-1.8.18
|
||||
=======================================================
|
||||
|
||||
* Build of libnm-gtk, a libnm-glib compatibility library, is disabled by
|
||||
default. It can be enabled by passing --with-libnm-gtk to configure
|
||||
script. Nobody should need it by now. Users that still use this are
|
||||
encouraged to let us know before the libnm-glib support is removed for good.
|
||||
* Improve the mobile broadband wizard (issue#15).
|
||||
* Fix a bug in the wifi dialog that made widgets disappear when
|
||||
selecting a different device (rh#1665653).
|
||||
* Support secret agent hints needed when using IWD as wireless
|
||||
backend.
|
||||
* Update Brazilian Portuguese, Catalan, Croatian, Czech, Danish,
|
||||
French, Lithuanian, Polish, Russian, Slovak and Turkish
|
||||
translations.
|
||||
|
||||
=======================================================
|
||||
network-manager-applet-1.8.18
|
||||
Overview of changes since network-manager-applet-1.8.16
|
||||
=======================================================
|
||||
|
||||
* libnma: fix wrongly showing hidden GUI elements, which
|
||||
causes connection editing to behave wrong (issue#20).
|
||||
* libnma, c-e: fix translation issues in GUI due to missing
|
||||
gettext domain (bgo#792285).
|
||||
* Update Croatian, German, Indonesian, Italian, Kazakh, and Turkish
|
||||
translations.
|
||||
|
||||
=======================================================
|
||||
network-manager-applet-1.8.16
|
||||
Overview of changes since network-manager-applet-1.8.14
|
||||
=======================================================
|
||||
|
||||
* Fix various issues that causes GtkApplication to quit at the wrong time.
|
||||
* Read the Mobile Providers database from a build-time determined location.
|
||||
* Modernize Gtk+ 3.0 use in preparations for Gtk+ 4.0.
|
||||
* Update Brazilian Portuguese, Polish, Turkish, German translation.
|
||||
|
||||
=======================================================
|
||||
network-manager-applet-1.8.14
|
||||
Overview of changes since network-manager-applet-1.8.12
|
||||
=======================================================
|
||||
|
||||
* Fix an applet crash on disconnect.
|
||||
* Fix VPN icons in AppIndicator mode.
|
||||
* Provide (limited) secret agent service even when a keyring is unavailable.
|
||||
* Fix saving of connections with "always ask" EAP secrets.
|
||||
* Register editor windows as GtkApplication windows, so that the editor
|
||||
quits at the right time with --edit option.
|
||||
* The AppStream metadata is now in /usr/share/metainfo as recommended by the
|
||||
specification.
|
||||
* Updated Catalan translation.
|
||||
|
||||
=======================================================
|
||||
network-manager-applet-1.8.12
|
||||
Overview of changes since network-manager-applet-1.8.10
|
||||
=======================================================
|
||||
|
||||
* Allow creation of PPPeE connection without a parent interface.
|
||||
* Add an option to set a connection as Metered.
|
||||
* Make the form layout consistent with GNOME UI style.
|
||||
* Convert editor into a GtkApplication with an app menu.
|
||||
* Fix a potential crash in the certificate picker with no modules.
|
||||
* Fix build warnings with GCC 8.
|
||||
* Support building against Ayatana AppIndicator.
|
||||
* Updated Brazilian Portuguese, Croatian, Czech, Danish, Dutch, Esperanto,
|
||||
French, German, Icelandic, Indonesian, Italian, Latvian, Lithuanian,
|
||||
Polish, Russian, Serbian and Spanish translations.
|
||||
|
||||
======================================================
|
||||
network-manager-applet-1.8.10
|
||||
Overview of changes since network-manager-applet-1.8.8
|
||||
======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Don't request secrets for Bluetooth connections. Works around a bug in GNOME
|
||||
Shell secret agent.
|
||||
* Fix a bug that caused invalid connections to be non-editable (and thus not
|
||||
fixable).
|
||||
|
||||
======================================================
|
||||
network-manager-applet-1.8.8
|
||||
Overview of changes since network-manager-applet-1.8.6
|
||||
======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Fix loading of secrets when editing a VPN connection.
|
||||
* Fixes to the experimental Meson support.
|
||||
* Update to then Japanese, Indonesian, Polish, Croatian and Danish translations.
|
||||
|
||||
======================================================
|
||||
network-manager-applet-1.8.6
|
||||
Overview of changes since network-manager-applet-1.8.4
|
||||
======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Added an option to build with Meson build system.
|
||||
* Wi-Fi client connections now support setting a band and a channel too.
|
||||
* Setting IPv6 address generation mode is now supported.
|
||||
* Fixed a possible crash after editing Wi-Fi connections.
|
||||
* Updated Danish, Dutch and German translations.
|
||||
|
||||
======================================================
|
||||
network-manager-applet-1.8.4
|
||||
Overview of changes since network-manager-applet-1.8.2
|
||||
======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* nm-c-e: Major rework of the nm-connection-editor UI.
|
||||
* nm-c-e: Add support for MACsec.
|
||||
* nm-c-e: Add support for new PPPoE connections not limited to ethernet.
|
||||
* nm-c-e: Add support for bridge's group-forward-mask property.
|
||||
* applet: Fix nm-applet's status icon when a VPN has the default route.
|
||||
* applet: Always center dialogs on the screen.
|
||||
* libnma: Fix handling empty password for certificate chooser.
|
||||
* po: Updated Catalan, Croatian, Czech, Galician, Indonesian, Italian,
|
||||
Kazakh, Lithuanian, Polish, Brazilian Portuguese, Punjabi, Romanian,
|
||||
Serbian, Spanish translations.
|
||||
* Various bugfixes and minor improvements.
|
||||
|
||||
======================================================
|
||||
network-manager-applet-1.8.2
|
||||
Overview of changes since network-manager-applet-1.8.0
|
||||
======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* It is now possible to secure the connections that use TLS, TTLS and
|
||||
PEAP authentications by specifying a Domain name to verify the remote
|
||||
certificate subject against.
|
||||
* The TTLS and PEAP EAP methods now utilize the certificate chooser
|
||||
that is capable of choosing an object from a PKCS#11 token.
|
||||
* When activating a VPN connection, the routes to the VPN server are now
|
||||
added whichever device has a default route regardless of its kind.
|
||||
* The applet now lists the Wi-Fi network connection profiles even if they
|
||||
are enslaved to another connection.
|
||||
* Fixed a crash after editing a connection with 802.1x security setting.
|
||||
* Updated Italian, Spanish and Japanese translations.
|
||||
|
||||
======================================================
|
||||
network-manager-applet-1.8
|
||||
Overview of changes since network-manager-applet-1.4.6
|
||||
======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Warn editor users if certificates have wrong SELinux labels
|
||||
* Added a PKCS#11 capable certificate chooser to EAP-TLS
|
||||
* Request Wi-Fi scan when showing the menu and update the scan
|
||||
result list dynamically.
|
||||
* Prevent the use from opening a file open dialog if they don't have
|
||||
permission to edit connections (e.g. in the login manager session)
|
||||
(CVE-2017-6590)
|
||||
* Fix broken libnma's pygobject library
|
||||
* Add version macros to libnma.
|
||||
|
||||
======================================================
|
||||
network-manager-applet-1.4.6
|
||||
Overview of changes since network-manager-applet-1.4.4
|
||||
======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Avoid unnecessarily requesting permission to access firewalld
|
||||
* Warn when editing a connection that has properties we don't recognize
|
||||
Useful when running with newer NetworkManager daemon
|
||||
* API documentation for libnma is now built
|
||||
* Added build options to enable LTO and section garbage collection
|
||||
* Bug fixes
|
||||
* Updated Brazilian, Catalan, Danish, Italian, Polish and Serbian
|
||||
translations
|
||||
|
||||
======================================================
|
||||
network-manager-applet-1.4.4
|
||||
Overview of changes since network-manager-applet-1.4.2
|
||||
======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Added the capability to start inport of a VPN connection from the command line
|
||||
with "nm-connection-editor --import" option
|
||||
* Allow editing of Ethernet link properties, such as link speed or duplex
|
||||
setting
|
||||
* Added support for creating and editing IP tunnel connections
|
||||
* Added support for editing Proxy setting whe built with NetworkManager 1.6
|
||||
or newer
|
||||
* Added support for TTLS/MSCHAPV2 method
|
||||
* Improved the cloned MAC address selection
|
||||
* Lot of bug fixes
|
||||
* Translation updates
|
||||
|
||||
======================================================
|
||||
network-manager-applet-1.4.2
|
||||
Overview of changes since network-manager-applet-1.4.0
|
||||
======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Removed UI property that required gtk3 >= 3.16
|
||||
* Added a workaround for broken strict matching with old Jansson
|
||||
versions
|
||||
|
||||
======================================================
|
||||
network-manager-applet-1.4
|
||||
Overview of changes since network-manager-applet-1.2.0
|
||||
======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Added support for multiple VPN connections
|
||||
* Added new pages for changing team and team-port configurations
|
||||
* Improved error reporting in the wireless security page
|
||||
* A single VPN plugins now supports the creation of multiple
|
||||
connection types
|
||||
* Fixed some crashes
|
||||
|
||||
======================================================
|
||||
network-manager-applet-1.2
|
||||
Overview of changes since network-manager-applet-1.0.0
|
||||
======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Ported to libnm, GDBus
|
||||
* Added new libnm-based client library (libnma)
|
||||
* Add support for libappindicator
|
||||
* Translation updates
|
||||
* Numerous crasher and memory leak bugs were fixed
|
||||
|
||||
The following features were backported to 1.0.x releases from 1.0.0 to 1.0.10
|
||||
are also present in network-manager-applet-1.2:
|
||||
|
||||
* Bluetooth page in connection editor is now populated with available Bluetooth
|
||||
devices
|
||||
* Added hotspot support to the editor
|
||||
* Password widgets now emits a signal for secret flag changes
|
||||
* The connection validation errors are now communicated in a tooltip
|
||||
* The editor is now able to edit the VLAN flags
|
||||
* Added option to set MTU of Team devices
|
||||
* Added AppData for nm-connection-editor
|
||||
* Setting MTU for a bond device is now supported
|
||||
* Connecting to a wireless network from the NetworkManager applet no longer
|
||||
results in an attempt to create system-wide connections. This fixes the
|
||||
ability to connect to a wireless network for non-privileged user
|
||||
* The master interface name is used instead of master connection UUID for
|
||||
slave connections created with nm-connection-editor. This fixes
|
||||
compatibility of the ifcfg configuration files with the legacy network
|
||||
service
|
||||
* It is now possible to specify an interface name instead of a MAC address
|
||||
when editing a connection using nm-connection-editor
|
||||
* The WWAN connections now have IPv6 enabled by default
|
||||
* libnm-gtk includes functions for password storage selection, which eases
|
||||
implementation of password GUI for VPN plugins and other users
|
||||
* The applet is no longer started in GNOME 3
|
||||
* STP controls are no longer displayed if STP is disabled
|
||||
* Improved accessibility for screen reader users
|
||||
|
||||
|
||||
=======================================================
|
||||
network-manager-applet-1.0
|
||||
Overview of changes since network-manager-applet-0.9.10
|
||||
=======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Added support for editing Bluetooth mobile broadband connections
|
||||
* Added support for IPv6 mobile broadband connections
|
||||
* Allow IPv6-only configuration for more connection types
|
||||
* The applet and editor are no longer shown in GNOME 3, which has its own
|
||||
network indicator and control panel
|
||||
|
||||
|
||||
=======================================================
|
||||
network-manager-applet-0.9.10
|
||||
Overview of changes since network-manager-applet-0.9.8
|
||||
=======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Added controls for IPv6 privacy extensions
|
||||
* Added support for VPN hints for new/additional secrets during connection
|
||||
* Added support for Data Center Bridging and FibreChannel over Ethernet configuration
|
||||
* Improved connections to new hidden WiFi networks
|
||||
* Allow slaves VLANs/slaves of more device types
|
||||
* Added support for changing password flags
|
||||
* Passwords/secrets now default to user-agent storage instead of system-wide storage
|
||||
* Added support for editing Team connections
|
||||
* Rework CA certificate warnings to be less annoying
|
||||
|
||||
|
||||
=======================================================
|
||||
network-manager-applet-0.9.8
|
||||
Overview of changes since network-manager-applet-0.9.6
|
||||
=======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Rework connection editor main UI to better support different connection types
|
||||
* Add connection editor support for WiMAX, Infiniband, Bond, and VLAN connections
|
||||
* Suggest "seen BSSIDs" for WiFi BSSID entry
|
||||
* Add connection editor support for autoconnect VPN connections
|
||||
* Add a "General" page to the connection editor and move general options to it
|
||||
* Fix GNOME Bluetooth plugin for recent versions of GNOME Bluetooth and the
|
||||
GNOME Control Center
|
||||
* Add LTE and HSPA+ icons to the applet
|
||||
* Fix connection editor command-line passing to already-running instance
|
||||
* Suppress nm-applet notifications when GNOME Shell is running
|
||||
* Ensure 802.1x passwords default to "agent owned" and not system-wide
|
||||
* Default to using system CA certificates for new connections
|
||||
* Add support for ModemManager 0.7/0.8
|
||||
* Fix a crash when editing IP addresses with the XIM input framework
|
||||
* Fix handling of connection Zone when firewalld is active
|
||||
* Fix saving a connection when ignoring a missing CA certificate
|
||||
|
||||
|
||||
=======================================================
|
||||
network-manager-applet-0.9.6
|
||||
Overview of changes since network-manager-applet-0.9.4
|
||||
=======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Fixed UI mnemonics
|
||||
* Various crash and stability fixes
|
||||
* Allow appending DNS servers and domains in automatic addressing mode
|
||||
* Fix defaults for PPP echo values
|
||||
* Show IPv6 addressing page for VPN plugins that support it
|
||||
* Port to GSettings and split out 0.8 -> 0.9 migration code into standalone tool
|
||||
* Recognize PKCS#12 certificates imported from Firefox
|
||||
* Pre-fill CDMA username/password in the mobile broadband wizard
|
||||
* Only handle VPN secrets for GNOME Shell 3.3 and lower
|
||||
|
||||
|
||||
=======================================================
|
||||
network-manager-applet-0.9.4
|
||||
Overview of changes since network-manager-applet-0.9.2
|
||||
=======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* Fix interaction of single-connection edit mode with PolicyKit
|
||||
* Add EAP-FAST support
|
||||
* Make editor connection list sortable
|
||||
* Ensure mobile broadband provider list is sensitized correctly
|
||||
* More flexible build-time warnings with --enable-more-warnings=[yes|no|error]
|
||||
* Removed unused PolicyKit configure check
|
||||
* Lazily initialize the notification service for faster startup
|
||||
* Fix various memory leaks
|
||||
* Warn user if CA certificate is left blank in the editor for 802.1x
|
||||
* Disabled creation of WPA-protected Ad-Hoc WiFi networks due to kernel bugs
|
||||
|
||||
|
||||
=======================================================
|
||||
network-manager-applet-0.9.2
|
||||
Overview of changes since network-manager-applet-0.9.0
|
||||
=======================================================
|
||||
|
||||
This is a new stable release of network-manager-applet. Notable changes include:
|
||||
|
||||
* New private library for wireless and mobile dialogs
|
||||
* iso-codes package used for translated country names in the mobile broadband wizard
|
||||
* Select user's home directory by default for VPN import
|
||||
* Show VPN details in the Connection Information dialog
|
||||
* Allow auto-unlocking of GSM modems
|
||||
* Fix crash of Bluetooth widget after pairing
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
#!/bin/sh
|
||||
# Run this to generate all the initial makefiles, etc.
|
||||
|
||||
srcdir=`dirname $0`
|
||||
test -z "$srcdir" && srcdir=.
|
||||
|
||||
PKG_NAME=nm-applet
|
||||
|
||||
(test -f $srcdir/configure.ac \
|
||||
&& test -f $srcdir/src/applet.c) || {
|
||||
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
||||
echo " top-level $PKG_NAME directory"
|
||||
exit 1
|
||||
}
|
||||
|
||||
(cd $srcdir;
|
||||
gtkdocize &&
|
||||
autoreconf --force --install --symlink
|
||||
)
|
||||
|
||||
if test -z "$NOCONFIGURE"; then
|
||||
"$srcdir/configure" --enable-maintainer-mode --enable-more-warnings=error "$@"
|
||||
fi
|
|
@ -0,0 +1,348 @@
|
|||
#! /bin/sh
|
||||
# Wrapper for compilers which do not understand '-c -o'.
|
||||
|
||||
scriptversion=2018-03-07.03; # UTC
|
||||
|
||||
# Copyright (C) 1999-2018 Free Software Foundation, Inc.
|
||||
# Written by Tom Tromey <tromey@cygnus.com>.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
# As a special exception to the GNU General Public License, if you
|
||||
# distribute this file as part of a program that contains a
|
||||
# configuration script generated by Autoconf, you may include it under
|
||||
# the same distribution terms that you use for the rest of that program.
|
||||
|
||||
# This file is maintained in Automake, please report
|
||||
# bugs to <bug-automake@gnu.org> or send patches to
|
||||
# <automake-patches@gnu.org>.
|
||||
|
||||
nl='
|
||||
'
|
||||
|
||||
# We need space, tab and new line, in precisely that order. Quoting is
|
||||
# there to prevent tools from complaining about whitespace usage.
|
||||
IFS=" "" $nl"
|
||||
|
||||
file_conv=
|
||||
|
||||
# func_file_conv build_file lazy
|
||||
# Convert a $build file to $host form and store it in $file
|
||||
# Currently only supports Windows hosts. If the determined conversion
|
||||
# type is listed in (the comma separated) LAZY, no conversion will
|
||||
# take place.
|
||||
func_file_conv ()
|
||||
{
|
||||
file=$1
|
||||
case $file in
|
||||
/ | /[!/]*) # absolute file, and not a UNC file
|
||||
if test -z "$file_conv"; then
|
||||
# lazily determine how to convert abs files
|
||||
case `uname -s` in
|
||||
MINGW*)
|
||||
file_conv=mingw
|
||||
;;
|
||||
CYGWIN*)
|
||||
file_conv=cygwin
|
||||
;;
|
||||
*)
|
||||
file_conv=wine
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
case $file_conv/,$2, in
|
||||
*,$file_conv,*)
|
||||
;;
|
||||
mingw/*)
|
||||
file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'`
|
||||
;;
|
||||
cygwin/*)
|
||||
file=`cygpath -m "$file" || echo "$file"`
|
||||
;;
|
||||
wine/*)
|
||||
file=`winepath -w "$file" || echo "$file"`
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
# func_cl_dashL linkdir
|
||||
# Make cl look for libraries in LINKDIR
|
||||
func_cl_dashL ()
|
||||
{
|
||||
func_file_conv "$1"
|
||||
if test -z "$lib_path"; then
|
||||
lib_path=$file
|
||||
else
|
||||
lib_path="$lib_path;$file"
|
||||
fi
|
||||
linker_opts="$linker_opts -LIBPATH:$file"
|
||||
}
|
||||
|
||||
# func_cl_dashl library
|
||||
# Do a library search-path lookup for cl
|
||||
func_cl_dashl ()
|
||||
{
|
||||
lib=$1
|
||||
found=no
|
||||
save_IFS=$IFS
|
||||
IFS=';'
|
||||
for dir in $lib_path $LIB
|
||||
do
|
||||
IFS=$save_IFS
|
||||
if $shared && test -f "$dir/$lib.dll.lib"; then
|
||||
found=yes
|
||||
lib=$dir/$lib.dll.lib
|
||||
break
|
||||
fi
|
||||
if test -f "$dir/$lib.lib"; then
|
||||
found=yes
|
||||
lib=$dir/$lib.lib
|
||||
break
|
||||
fi
|
||||
if test -f "$dir/lib$lib.a"; then
|
||||
found=yes
|
||||
lib=$dir/lib$lib.a
|
||||
break
|
||||
fi
|
||||
done
|
||||
IFS=$save_IFS
|
||||
|
||||
if test "$found" != yes; then
|
||||
lib=$lib.lib
|
||||
fi
|
||||
}
|
||||
|
||||
# func_cl_wrapper cl arg...
|
||||
# Adjust compile command to suit cl
|
||||
func_cl_wrapper ()
|
||||
{
|
||||
# Assume a capable shell
|
||||
lib_path=
|
||||
shared=:
|
||||
linker_opts=
|
||||
for arg
|
||||
do
|
||||
if test -n "$eat"; then
|
||||
eat=
|
||||
else
|
||||
case $1 in
|
||||
-o)
|
||||
# configure might choose to run compile as 'compile cc -o foo foo.c'.
|
||||
eat=1
|
||||
case $2 in
|
||||
*.o | *.[oO][bB][jJ])
|
||||
func_file_conv "$2"
|
||||
set x "$@" -Fo"$file"
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
func_file_conv "$2"
|
||||
set x "$@" -Fe"$file"
|
||||
shift
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
-I)
|
||||
eat=1
|
||||
func_file_conv "$2" mingw
|
||||
set x "$@" -I"$file"
|
||||
shift
|
||||
;;
|
||||
-I*)
|
||||
func_file_conv "${1#-I}" mingw
|
||||
set x "$@" -I"$file"
|
||||
shift
|
||||
;;
|
||||
-l)
|
||||
eat=1
|
||||
func_cl_dashl "$2"
|
||||
set x "$@" "$lib"
|
||||
shift
|
||||
;;
|
||||
-l*)
|
||||
func_cl_dashl "${1#-l}"
|
||||
set x "$@" "$lib"
|
||||
shift
|
||||
;;
|
||||
-L)
|
||||
eat=1
|
||||
func_cl_dashL "$2"
|
||||
;;
|
||||
-L*)
|
||||
func_cl_dashL "${1#-L}"
|
||||
;;
|
||||
-static)
|
||||
shared=false
|
||||
;;
|
||||
-Wl,*)
|
||||
arg=${1#-Wl,}
|
||||
save_ifs="$IFS"; IFS=','
|
||||
for flag in $arg; do
|
||||
IFS="$save_ifs"
|
||||
linker_opts="$linker_opts $flag"
|
||||
done
|
||||
IFS="$save_ifs"
|
||||
;;
|
||||
-Xlinker)
|
||||
eat=1
|
||||
linker_opts="$linker_opts $2"
|
||||
;;
|
||||
-*)
|
||||
set x "$@" "$1"
|
||||
shift
|
||||
;;
|
||||
*.cc | *.CC | *.cxx | *.CXX | *.[cC]++)
|
||||
func_file_conv "$1"
|
||||
set x "$@" -Tp"$file"
|
||||
shift
|
||||
;;
|
||||
*.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO])
|
||||
func_file_conv "$1" mingw
|
||||
set x "$@" "$file"
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set x "$@" "$1"
|
||||
shift
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
shift
|
||||
done
|
||||
if test -n "$linker_opts"; then
|
||||
linker_opts="-link$linker_opts"
|
||||
fi
|
||||
exec "$@" $linker_opts
|
||||
exit 1
|
||||
}
|
||||
|
||||
eat=
|
||||
|
||||
case $1 in
|
||||
'')
|
||||
echo "$0: No command. Try '$0 --help' for more information." 1>&2
|
||||
exit 1;
|
||||
;;
|
||||
-h | --h*)
|
||||
cat <<\EOF
|
||||
Usage: compile [--help] [--version] PROGRAM [ARGS]
|
||||
|
||||
Wrapper for compilers which do not understand '-c -o'.
|
||||
Remove '-o dest.o' from ARGS, run PROGRAM with the remaining
|
||||
arguments, and rename the output as expected.
|
||||
|
||||
If you are trying to build a whole package this is not the
|
||||
right script to run: please start by reading the file 'INSTALL'.
|
||||
|
||||
Report bugs to <bug-automake@gnu.org>.
|
||||
EOF
|
||||
exit $?
|
||||
;;
|
||||
-v | --v*)
|
||||
echo "compile $scriptversion"
|
||||
exit $?
|
||||
;;
|
||||
cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \
|
||||
icl | *[/\\]icl | icl.exe | *[/\\]icl.exe )
|
||||
func_cl_wrapper "$@" # Doesn't return...
|
||||
;;
|
||||
esac
|
||||
|
||||
ofile=
|
||||
cfile=
|
||||
|
||||
for arg
|
||||
do
|
||||
if test -n "$eat"; then
|
||||
eat=
|
||||
else
|
||||
case $1 in
|
||||
-o)
|
||||
# configure might choose to run compile as 'compile cc -o foo foo.c'.
|
||||
# So we strip '-o arg' only if arg is an object.
|
||||
eat=1
|
||||
case $2 in
|
||||
*.o | *.obj)
|
||||
ofile=$2
|
||||
;;
|
||||
*)
|
||||
set x "$@" -o "$2"
|
||||
shift
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
*.c)
|
||||
cfile=$1
|
||||
set x "$@" "$1"
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set x "$@" "$1"
|
||||
shift
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
shift
|
||||
done
|
||||
|
||||
if test -z "$ofile" || test -z "$cfile"; then
|
||||
# If no '-o' option was seen then we might have been invoked from a
|
||||
# pattern rule where we don't need one. That is ok -- this is a
|
||||
# normal compilation that the losing compiler can handle. If no
|
||||
# '.c' file was seen then we are probably linking. That is also
|
||||
# ok.
|
||||
exec "$@"
|
||||
fi
|
||||
|
||||
# Name of file we expect compiler to create.
|
||||
cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'`
|
||||
|
||||
# Create the lock directory.
|
||||
# Note: use '[/\\:.-]' here to ensure that we don't use the same name
|
||||
# that we are using for the .o file. Also, base the name on the expected
|
||||
# object file name, since that is what matters with a parallel build.
|
||||
lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d
|
||||
while true; do
|
||||
if mkdir "$lockdir" >/dev/null 2>&1; then
|
||||
break
|
||||
fi
|
||||
sleep 1
|
||||
done
|
||||
# FIXME: race condition here if user kills between mkdir and trap.
|
||||
trap "rmdir '$lockdir'; exit 1" 1 2 15
|
||||
|
||||
# Run the compile.
|
||||
"$@"
|
||||
ret=$?
|
||||
|
||||
if test -f "$cofile"; then
|
||||
test "$cofile" = "$ofile" || mv "$cofile" "$ofile"
|
||||
elif test -f "${cofile}bj"; then
|
||||
test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile"
|
||||
fi
|
||||
|
||||
rmdir "$lockdir"
|
||||
exit $ret
|
||||
|
||||
# Local Variables:
|
||||
# mode: shell-script
|
||||
# sh-indentation: 2
|
||||
# eval: (add-hook 'before-save-hook 'time-stamp)
|
||||
# time-stamp-start: "scriptversion="
|
||||
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||
# time-stamp-time-zone: "UTC0"
|
||||
# time-stamp-end: "; # UTC"
|
||||
# End:
|
|
@ -0,0 +1,157 @@
|
|||
/* config.h.in. Generated from configure.ac by autoheader. */
|
||||
|
||||
/* Define to 1 if translation of program messages to the user's native
|
||||
language is requested. */
|
||||
#undef ENABLE_NLS
|
||||
|
||||
/* Gettext package */
|
||||
#undef GETTEXT_PACKAGE
|
||||
|
||||
/* Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the
|
||||
CoreFoundation framework. */
|
||||
#undef HAVE_CFLOCALECOPYCURRENT
|
||||
|
||||
/* Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in
|
||||
the CoreFoundation framework. */
|
||||
#undef HAVE_CFPREFERENCESCOPYAPPVALUE
|
||||
|
||||
/* Define if the GNU dcgettext() function is already present or preinstalled.
|
||||
*/
|
||||
#undef HAVE_DCGETTEXT
|
||||
|
||||
/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
#undef HAVE_DLFCN_H
|
||||
|
||||
/* Define if the GNU gettext() function is already present or preinstalled. */
|
||||
#undef HAVE_GETTEXT
|
||||
|
||||
/* Define if you have the iconv() function and it works. */
|
||||
#undef HAVE_ICONV
|
||||
|
||||
/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
#undef HAVE_INTTYPES_H
|
||||
|
||||
/* Define if you have libnotify 0.7 or later */
|
||||
#undef HAVE_LIBNOTIFY_07
|
||||
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#undef HAVE_MEMORY_H
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#undef HAVE_STDINT_H
|
||||
|
||||
/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
#undef HAVE_STDLIB_H
|
||||
|
||||
/* Define to 1 if you have the <strings.h> header file. */
|
||||
#undef HAVE_STRINGS_H
|
||||
|
||||
/* Define to 1 if you have the <string.h> header file. */
|
||||
#undef HAVE_STRING_H
|
||||
|
||||
/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
#undef HAVE_SYS_STAT_H
|
||||
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#undef HAVE_SYS_TYPES_H
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#undef HAVE_UNISTD_H
|
||||
|
||||
/* ISO codes prefix */
|
||||
#undef ISO_CODES_PREFIX
|
||||
|
||||
/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
||||
#undef LT_OBJDIR
|
||||
|
||||
/* Mobile Broadband Service Provider Information Database location */
|
||||
#undef MOBILE_BROADBAND_PROVIDER_INFO_DATABASE
|
||||
|
||||
/* git commit id of the original source code version */
|
||||
#undef NMA_GIT_SHA
|
||||
|
||||
/* Define if more asserts are enabled */
|
||||
#undef NM_MORE_ASSERTS
|
||||
|
||||
/* Name of package */
|
||||
#undef PACKAGE
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#undef PACKAGE_BUGREPORT
|
||||
|
||||
/* Define to the full name of this package. */
|
||||
#undef PACKAGE_NAME
|
||||
|
||||
/* Define to the full name and version of this package. */
|
||||
#undef PACKAGE_STRING
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#undef PACKAGE_TARNAME
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#undef PACKAGE_URL
|
||||
|
||||
/* Define to the version of this package. */
|
||||
#undef PACKAGE_VERSION
|
||||
|
||||
/* Define to 1 if you have the ANSI C header files. */
|
||||
#undef STDC_HEADERS
|
||||
|
||||
/* Explicitly enforce Ayatana AppIndicator */
|
||||
#undef USE_AYATANA_INDICATORS
|
||||
|
||||
/* Enable extensions on AIX 3, Interix. */
|
||||
#ifndef _ALL_SOURCE
|
||||
# undef _ALL_SOURCE
|
||||
#endif
|
||||
/* Enable GNU extensions on systems that have them. */
|
||||
#ifndef _GNU_SOURCE
|
||||
# undef _GNU_SOURCE
|
||||
#endif
|
||||
/* Enable threading extensions on Solaris. */
|
||||
#ifndef _POSIX_PTHREAD_SEMANTICS
|
||||
# undef _POSIX_PTHREAD_SEMANTICS
|
||||
#endif
|
||||
/* Enable extensions on HP NonStop. */
|
||||
#ifndef _TANDEM_SOURCE
|
||||
# undef _TANDEM_SOURCE
|
||||
#endif
|
||||
/* Enable general extensions on Solaris. */
|
||||
#ifndef __EXTENSIONS__
|
||||
# undef __EXTENSIONS__
|
||||
#endif
|
||||
|
||||
|
||||
/* Version number of package */
|
||||
#undef VERSION
|
||||
|
||||
/* Enable AppIndicator support and use Ubuntu AppIndicator */
|
||||
#undef WITH_APPINDICATOR
|
||||
|
||||
/* Define if Gcr is available */
|
||||
#undef WITH_GCR
|
||||
|
||||
/* Define if GTK4 Gcr is available */
|
||||
#undef WITH_GCR_GTK4
|
||||
|
||||
/* Define if Jansson is available */
|
||||
#undef WITH_JANSSON
|
||||
|
||||
/* Define if libselinux is available */
|
||||
#undef WITH_SELINUX
|
||||
|
||||
/* Define if you have ModemManager/WWAN support */
|
||||
#undef WITH_WWAN
|
||||
|
||||
/* Define to 1 if on MINIX. */
|
||||
#undef _MINIX
|
||||
|
||||
/* Define to 2 if the system does not provide POSIX.1 features except with
|
||||
this defined. */
|
||||
#undef _POSIX_1_SOURCE
|
||||
|
||||
/* Define to 1 if you need to in order for `stat' and other things to work. */
|
||||
#undef _POSIX_SOURCE
|
||||
|
||||
/* Define to `int' if <sys/types.h> does not define. */
|
||||
#undef pid_t
|
|
@ -0,0 +1,76 @@
|
|||
/* Gettext package */
|
||||
#mesondefine GETTEXT_PACKAGE
|
||||
|
||||
/* Define if you have libnotify 0.7 or later */
|
||||
#mesondefine HAVE_LIBNOTIFY_07
|
||||
|
||||
/* ISO codes prefix */
|
||||
#mesondefine ISO_CODES_PREFIX
|
||||
|
||||
/* Mobile Broadband Service Provider Information Database location */
|
||||
#mesondefine MOBILE_BROADBAND_PROVIDER_INFO_DATABASE
|
||||
|
||||
/* Define if more asserts are enabled */
|
||||
#mesondefine NM_MORE_ASSERTS
|
||||
|
||||
/* Enable extensions on AIX 3, Interix. */
|
||||
#ifndef _ALL_SOURCE
|
||||
# define _ALL_SOURCE 1
|
||||
#endif
|
||||
|
||||
/* Enable GNU extensions on systems that have them. */
|
||||
#ifndef _GNU_SOURCE
|
||||
# define _GNU_SOURCE 1
|
||||
#endif
|
||||
|
||||
/* Enable threading extensions on Solaris. */
|
||||
#ifndef _POSIX_PTHREAD_SEMANTICS
|
||||
# define _POSIX_PTHREAD_SEMANTICS 1
|
||||
#endif
|
||||
|
||||
/* Enable extensions on HP NonStop. */
|
||||
#ifndef _TANDEM_SOURCE
|
||||
# define _TANDEM_SOURCE 1
|
||||
#endif
|
||||
|
||||
/* Enable general extensions on Solaris. */
|
||||
#ifndef __EXTENSIONS__
|
||||
# define __EXTENSIONS__ 1
|
||||
#endif
|
||||
|
||||
/* Version number of package */
|
||||
#mesondefine VERSION
|
||||
|
||||
/* Enable using libappindicator */
|
||||
#mesondefine WITH_APPINDICATOR
|
||||
|
||||
/* Use Ayatana AppIndicator, rathern than Ubuntu's AppIndicator */
|
||||
#mesondefine USE_AYATANA_INDICATORS
|
||||
|
||||
/* Define if Gcr is available */
|
||||
#mesondefine WITH_GCR
|
||||
|
||||
/* Define if GTK4 Gcr is available */
|
||||
#mesondefine WITH_GCR_GTK4
|
||||
|
||||
/* Define if Jansson is available */
|
||||
#mesondefine WITH_JANSSON
|
||||
|
||||
/* Define if libselinux is available */
|
||||
#mesondefine WITH_SELINUX
|
||||
|
||||
/* Define if you have ModemManager/WWAN support */
|
||||
#mesondefine WITH_WWAN
|
||||
|
||||
/* Define to 1 if on MINIX. */
|
||||
#mesondefine _MINIX
|
||||
|
||||
/* Define to 2 if the system does not provide POSIX.1 features except with
|
||||
this defined. */
|
||||
#mesondefine _POSIX_1_SOURCE
|
||||
|
||||
/* Define to 1 if you need to in order for `stat' and other things to work. */
|
||||
#mesondefine _POSIX_SOURCE
|
||||
|
||||
/* Define to `int' if <sys/types.h> does not define. */
|
||||
#mesondefine pid_t
|
|
@ -0,0 +1,672 @@
|
|||
#! /bin/sh
|
||||
# Output a system dependent set of variables, describing how to set the
|
||||
# run time search path of shared libraries in an executable.
|
||||
#
|
||||
# Copyright 1996-2010 Free Software Foundation, Inc.
|
||||
# Taken from GNU libtool, 2001
|
||||
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
|
||||
#
|
||||
# This file is free software; the Free Software Foundation gives
|
||||
# unlimited permission to copy and/or distribute it, with or without
|
||||
# modifications, as long as this notice is preserved.
|
||||
#
|
||||
# The first argument passed to this file is the canonical host specification,
|
||||
# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
|
||||
# or
|
||||
# CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
|
||||
# The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld
|
||||
# should be set by the caller.
|
||||
#
|
||||
# The set of defined variables is at the end of this script.
|
||||
|
||||
# Known limitations:
|
||||
# - On IRIX 6.5 with CC="cc", the run time search patch must not be longer
|
||||
# than 256 bytes, otherwise the compiler driver will dump core. The only
|
||||
# known workaround is to choose shorter directory names for the build
|
||||
# directory and/or the installation directory.
|
||||
|
||||
# All known linkers require a `.a' archive for static linking (except MSVC,
|
||||
# which needs '.lib').
|
||||
libext=a
|
||||
shrext=.so
|
||||
|
||||
host="$1"
|
||||
host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
|
||||
host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
|
||||
host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
|
||||
|
||||
# Code taken from libtool.m4's _LT_CC_BASENAME.
|
||||
|
||||
for cc_temp in $CC""; do
|
||||
case $cc_temp in
|
||||
compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
|
||||
distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
|
||||
\-*) ;;
|
||||
*) break;;
|
||||
esac
|
||||
done
|
||||
cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'`
|
||||
|
||||
# Code taken from libtool.m4's _LT_COMPILER_PIC.
|
||||
|
||||
wl=
|
||||
if test "$GCC" = yes; then
|
||||
wl='-Wl,'
|
||||
else
|
||||
case "$host_os" in
|
||||
aix*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
darwin*)
|
||||
case $cc_basename in
|
||||
xlc*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
mingw* | cygwin* | pw32* | os2* | cegcc*)
|
||||
;;
|
||||
hpux9* | hpux10* | hpux11*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
irix5* | irix6* | nonstopux*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
newsos6)
|
||||
;;
|
||||
linux* | k*bsd*-gnu)
|
||||
case $cc_basename in
|
||||
ecc*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
icc* | ifort*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
lf95*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
pgcc | pgf77 | pgf90)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
ccc*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
como)
|
||||
wl='-lopt='
|
||||
;;
|
||||
*)
|
||||
case `$CC -V 2>&1 | sed 5q` in
|
||||
*Sun\ C*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
osf3* | osf4* | osf5*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
rdos*)
|
||||
;;
|
||||
solaris*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
sunos4*)
|
||||
wl='-Qoption ld '
|
||||
;;
|
||||
sysv4 | sysv4.2uw2* | sysv4.3*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
sysv4*MP*)
|
||||
;;
|
||||
sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
unicos*)
|
||||
wl='-Wl,'
|
||||
;;
|
||||
uts4*)
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Code taken from libtool.m4's _LT_LINKER_SHLIBS.
|
||||
|
||||
hardcode_libdir_flag_spec=
|
||||
hardcode_libdir_separator=
|
||||
hardcode_direct=no
|
||||
hardcode_minus_L=no
|
||||
|
||||
case "$host_os" in
|
||||
cygwin* | mingw* | pw32* | cegcc*)
|
||||
# FIXME: the MSVC++ port hasn't been tested in a loooong time
|
||||
# When not using gcc, we currently assume that we are using
|
||||
# Microsoft Visual C++.
|
||||
if test "$GCC" != yes; then
|
||||
with_gnu_ld=no
|
||||
fi
|
||||
;;
|
||||
interix*)
|
||||
# we just hope/assume this is gcc and not c89 (= MSVC++)
|
||||
with_gnu_ld=yes
|
||||
;;
|
||||
openbsd*)
|
||||
with_gnu_ld=no
|
||||
;;
|
||||
esac
|
||||
|
||||
ld_shlibs=yes
|
||||
if test "$with_gnu_ld" = yes; then
|
||||
# Set some defaults for GNU ld with shared library support. These
|
||||
# are reset later if shared libraries are not supported. Putting them
|
||||
# here allows them to be overridden if necessary.
|
||||
# Unlike libtool, we use -rpath here, not --rpath, since the documented
|
||||
# option of GNU ld is called -rpath, not --rpath.
|
||||
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||
case "$host_os" in
|
||||
aix[3-9]*)
|
||||
# On AIX/PPC, the GNU linker is very broken
|
||||
if test "$host_cpu" != ia64; then
|
||||
ld_shlibs=no
|
||||
fi
|
||||
;;
|
||||
amigaos*)
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
hardcode_minus_L=yes
|
||||
# Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
|
||||
# that the semantics of dynamic libraries on AmigaOS, at least up
|
||||
# to version 4, is to share data among multiple programs linked
|
||||
# with the same dynamic library. Since this doesn't match the
|
||||
# behavior of shared libraries on other platforms, we cannot use
|
||||
# them.
|
||||
ld_shlibs=no
|
||||
;;
|
||||
beos*)
|
||||
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
|
||||
:
|
||||
else
|
||||
ld_shlibs=no
|
||||
fi
|
||||
;;
|
||||
cygwin* | mingw* | pw32* | cegcc*)
|
||||
# hardcode_libdir_flag_spec is actually meaningless, as there is
|
||||
# no search path for DLLs.
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
|
||||
:
|
||||
else
|
||||
ld_shlibs=no
|
||||
fi
|
||||
;;
|
||||
interix[3-9]*)
|
||||
hardcode_direct=no
|
||||
hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
||||
;;
|
||||
gnu* | linux* | k*bsd*-gnu)
|
||||
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
|
||||
:
|
||||
else
|
||||
ld_shlibs=no
|
||||
fi
|
||||
;;
|
||||
netbsd*)
|
||||
;;
|
||||
solaris*)
|
||||
if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
|
||||
ld_shlibs=no
|
||||
elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
|
||||
:
|
||||
else
|
||||
ld_shlibs=no
|
||||
fi
|
||||
;;
|
||||
sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
|
||||
case `$LD -v 2>&1` in
|
||||
*\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
|
||||
ld_shlibs=no
|
||||
;;
|
||||
*)
|
||||
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
|
||||
hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
|
||||
else
|
||||
ld_shlibs=no
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
sunos4*)
|
||||
hardcode_direct=yes
|
||||
;;
|
||||
*)
|
||||
if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
|
||||
:
|
||||
else
|
||||
ld_shlibs=no
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
if test "$ld_shlibs" = no; then
|
||||
hardcode_libdir_flag_spec=
|
||||
fi
|
||||
else
|
||||
case "$host_os" in
|
||||
aix3*)
|
||||
# Note: this linker hardcodes the directories in LIBPATH if there
|
||||
# are no directories specified by -L.
|
||||
hardcode_minus_L=yes
|
||||
if test "$GCC" = yes; then
|
||||
# Neither direct hardcoding nor static linking is supported with a
|
||||
# broken collect2.
|
||||
hardcode_direct=unsupported
|
||||
fi
|
||||
;;
|
||||
aix[4-9]*)
|
||||
if test "$host_cpu" = ia64; then
|
||||
# On IA64, the linker does run time linking by default, so we don't
|
||||
# have to do anything special.
|
||||
aix_use_runtimelinking=no
|
||||
else
|
||||
aix_use_runtimelinking=no
|
||||
# Test if we are trying to use run time linking or normal
|
||||
# AIX style linking. If -brtl is somewhere in LDFLAGS, we
|
||||
# need to do runtime linking.
|
||||
case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*)
|
||||
for ld_flag in $LDFLAGS; do
|
||||
if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
|
||||
aix_use_runtimelinking=yes
|
||||
break
|
||||
fi
|
||||
done
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
hardcode_direct=yes
|
||||
hardcode_libdir_separator=':'
|
||||
if test "$GCC" = yes; then
|
||||
case $host_os in aix4.[012]|aix4.[012].*)
|
||||
collect2name=`${CC} -print-prog-name=collect2`
|
||||
if test -f "$collect2name" && \
|
||||
strings "$collect2name" | grep resolve_lib_name >/dev/null
|
||||
then
|
||||
# We have reworked collect2
|
||||
:
|
||||
else
|
||||
# We have old collect2
|
||||
hardcode_direct=unsupported
|
||||
hardcode_minus_L=yes
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
hardcode_libdir_separator=
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
# Begin _LT_AC_SYS_LIBPATH_AIX.
|
||||
echo 'int main () { return 0; }' > conftest.c
|
||||
${CC} ${LDFLAGS} conftest.c -o conftest
|
||||
aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; }
|
||||
}'`
|
||||
if test -z "$aix_libpath"; then
|
||||
aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; }
|
||||
}'`
|
||||
fi
|
||||
if test -z "$aix_libpath"; then
|
||||
aix_libpath="/usr/lib:/lib"
|
||||
fi
|
||||
rm -f conftest.c conftest
|
||||
# End _LT_AC_SYS_LIBPATH_AIX.
|
||||
if test "$aix_use_runtimelinking" = yes; then
|
||||
hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
|
||||
else
|
||||
if test "$host_cpu" = ia64; then
|
||||
hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
|
||||
else
|
||||
hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
|
||||
fi
|
||||
fi
|
||||
;;
|
||||
amigaos*)
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
hardcode_minus_L=yes
|
||||
# see comment about different semantics on the GNU ld section
|
||||
ld_shlibs=no
|
||||
;;
|
||||
bsdi[45]*)
|
||||
;;
|
||||
cygwin* | mingw* | pw32* | cegcc*)
|
||||
# When not using gcc, we currently assume that we are using
|
||||
# Microsoft Visual C++.
|
||||
# hardcode_libdir_flag_spec is actually meaningless, as there is
|
||||
# no search path for DLLs.
|
||||
hardcode_libdir_flag_spec=' '
|
||||
libext=lib
|
||||
;;
|
||||
darwin* | rhapsody*)
|
||||
hardcode_direct=no
|
||||
if test "$GCC" = yes ; then
|
||||
:
|
||||
else
|
||||
case $cc_basename in
|
||||
xlc*)
|
||||
;;
|
||||
*)
|
||||
ld_shlibs=no
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
;;
|
||||
dgux*)
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
;;
|
||||
freebsd1*)
|
||||
ld_shlibs=no
|
||||
;;
|
||||
freebsd2.2*)
|
||||
hardcode_libdir_flag_spec='-R$libdir'
|
||||
hardcode_direct=yes
|
||||
;;
|
||||
freebsd2*)
|
||||
hardcode_direct=yes
|
||||
hardcode_minus_L=yes
|
||||
;;
|
||||
freebsd* | dragonfly*)
|
||||
hardcode_libdir_flag_spec='-R$libdir'
|
||||
hardcode_direct=yes
|
||||
;;
|
||||
hpux9*)
|
||||
hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
|
||||
hardcode_libdir_separator=:
|
||||
hardcode_direct=yes
|
||||
# hardcode_minus_L: Not really in the search PATH,
|
||||
# but as the default location of the library.
|
||||
hardcode_minus_L=yes
|
||||
;;
|
||||
hpux10*)
|
||||
if test "$with_gnu_ld" = no; then
|
||||
hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
|
||||
hardcode_libdir_separator=:
|
||||
hardcode_direct=yes
|
||||
# hardcode_minus_L: Not really in the search PATH,
|
||||
# but as the default location of the library.
|
||||
hardcode_minus_L=yes
|
||||
fi
|
||||
;;
|
||||
hpux11*)
|
||||
if test "$with_gnu_ld" = no; then
|
||||
hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
|
||||
hardcode_libdir_separator=:
|
||||
case $host_cpu in
|
||||
hppa*64*|ia64*)
|
||||
hardcode_direct=no
|
||||
;;
|
||||
*)
|
||||
hardcode_direct=yes
|
||||
# hardcode_minus_L: Not really in the search PATH,
|
||||
# but as the default location of the library.
|
||||
hardcode_minus_L=yes
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
;;
|
||||
irix5* | irix6* | nonstopux*)
|
||||
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||
hardcode_libdir_separator=:
|
||||
;;
|
||||
netbsd*)
|
||||
hardcode_libdir_flag_spec='-R$libdir'
|
||||
hardcode_direct=yes
|
||||
;;
|
||||
newsos6)
|
||||
hardcode_direct=yes
|
||||
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||
hardcode_libdir_separator=:
|
||||
;;
|
||||
openbsd*)
|
||||
if test -f /usr/libexec/ld.so; then
|
||||
hardcode_direct=yes
|
||||
if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
|
||||
hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
||||
else
|
||||
case "$host_os" in
|
||||
openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
|
||||
hardcode_libdir_flag_spec='-R$libdir'
|
||||
;;
|
||||
*)
|
||||
hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
else
|
||||
ld_shlibs=no
|
||||
fi
|
||||
;;
|
||||
os2*)
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
hardcode_minus_L=yes
|
||||
;;
|
||||
osf3*)
|
||||
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||
hardcode_libdir_separator=:
|
||||
;;
|
||||
osf4* | osf5*)
|
||||
if test "$GCC" = yes; then
|
||||
hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
|
||||
else
|
||||
# Both cc and cxx compiler support -rpath directly
|
||||
hardcode_libdir_flag_spec='-rpath $libdir'
|
||||
fi
|
||||
hardcode_libdir_separator=:
|
||||
;;
|
||||
solaris*)
|
||||
hardcode_libdir_flag_spec='-R$libdir'
|
||||
;;
|
||||
sunos4*)
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
hardcode_direct=yes
|
||||
hardcode_minus_L=yes
|
||||
;;
|
||||
sysv4)
|
||||
case $host_vendor in
|
||||
sni)
|
||||
hardcode_direct=yes # is this really true???
|
||||
;;
|
||||
siemens)
|
||||
hardcode_direct=no
|
||||
;;
|
||||
motorola)
|
||||
hardcode_direct=no #Motorola manual says yes, but my tests say they lie
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
sysv4.3*)
|
||||
;;
|
||||
sysv4*MP*)
|
||||
if test -d /usr/nec; then
|
||||
ld_shlibs=yes
|
||||
fi
|
||||
;;
|
||||
sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*)
|
||||
;;
|
||||
sysv5* | sco3.2v5* | sco5v6*)
|
||||
hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
|
||||
hardcode_libdir_separator=':'
|
||||
;;
|
||||
uts4*)
|
||||
hardcode_libdir_flag_spec='-L$libdir'
|
||||
;;
|
||||
*)
|
||||
ld_shlibs=no
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
# Check dynamic linker characteristics
|
||||
# Code taken from libtool.m4's _LT_SYS_DYNAMIC_LINKER.
|
||||
# Unlike libtool.m4, here we don't care about _all_ names of the library, but
|
||||
# only about the one the linker finds when passed -lNAME. This is the last
|
||||
# element of library_names_spec in libtool.m4, or possibly two of them if the
|
||||
# linker has special search rules.
|
||||
library_names_spec= # the last element of library_names_spec in libtool.m4
|
||||
libname_spec='lib$name'
|
||||
case "$host_os" in
|
||||
aix3*)
|
||||
library_names_spec='$libname.a'
|
||||
;;
|
||||
aix[4-9]*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
amigaos*)
|
||||
library_names_spec='$libname.a'
|
||||
;;
|
||||
beos*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
bsdi[45]*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
cygwin* | mingw* | pw32* | cegcc*)
|
||||
shrext=.dll
|
||||
library_names_spec='$libname.dll.a $libname.lib'
|
||||
;;
|
||||
darwin* | rhapsody*)
|
||||
shrext=.dylib
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
dgux*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
freebsd1*)
|
||||
;;
|
||||
freebsd* | dragonfly*)
|
||||
case "$host_os" in
|
||||
freebsd[123]*)
|
||||
library_names_spec='$libname$shrext$versuffix' ;;
|
||||
*)
|
||||
library_names_spec='$libname$shrext' ;;
|
||||
esac
|
||||
;;
|
||||
gnu*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
hpux9* | hpux10* | hpux11*)
|
||||
case $host_cpu in
|
||||
ia64*)
|
||||
shrext=.so
|
||||
;;
|
||||
hppa*64*)
|
||||
shrext=.sl
|
||||
;;
|
||||
*)
|
||||
shrext=.sl
|
||||
;;
|
||||
esac
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
interix[3-9]*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
irix5* | irix6* | nonstopux*)
|
||||
library_names_spec='$libname$shrext'
|
||||
case "$host_os" in
|
||||
irix5* | nonstopux*)
|
||||
libsuff= shlibsuff=
|
||||
;;
|
||||
*)
|
||||
case $LD in
|
||||
*-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;;
|
||||
*-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;;
|
||||
*-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;;
|
||||
*) libsuff= shlibsuff= ;;
|
||||
esac
|
||||
;;
|
||||
esac
|
||||
;;
|
||||
linux*oldld* | linux*aout* | linux*coff*)
|
||||
;;
|
||||
linux* | k*bsd*-gnu)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
knetbsd*-gnu)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
netbsd*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
newsos6)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
nto-qnx*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
openbsd*)
|
||||
library_names_spec='$libname$shrext$versuffix'
|
||||
;;
|
||||
os2*)
|
||||
libname_spec='$name'
|
||||
shrext=.dll
|
||||
library_names_spec='$libname.a'
|
||||
;;
|
||||
osf3* | osf4* | osf5*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
rdos*)
|
||||
;;
|
||||
solaris*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
sunos4*)
|
||||
library_names_spec='$libname$shrext$versuffix'
|
||||
;;
|
||||
sysv4 | sysv4.3*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
sysv4*MP*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
uts4*)
|
||||
library_names_spec='$libname$shrext'
|
||||
;;
|
||||
esac
|
||||
|
||||
sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
|
||||
escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
||||
shlibext=`echo "$shrext" | sed -e 's,^\.,,'`
|
||||
escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
||||
escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
||||
escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
|
||||
|
||||
LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF
|
||||
|
||||
# How to pass a linker flag through the compiler.
|
||||
wl="$escaped_wl"
|
||||
|
||||
# Static library suffix (normally "a").
|
||||
libext="$libext"
|
||||
|
||||
# Shared library suffix (normally "so").
|
||||
shlibext="$shlibext"
|
||||
|
||||
# Format of library name prefix.
|
||||
libname_spec="$escaped_libname_spec"
|
||||
|
||||
# Library names that the linker finds when passed -lNAME.
|
||||
library_names_spec="$escaped_library_names_spec"
|
||||
|
||||
# Flag to hardcode \$libdir into a binary during linking.
|
||||
# This must work even if \$libdir does not exist.
|
||||
hardcode_libdir_flag_spec="$escaped_hardcode_libdir_flag_spec"
|
||||
|
||||
# Whether we need a single -rpath flag with a separated argument.
|
||||
hardcode_libdir_separator="$hardcode_libdir_separator"
|
||||
|
||||
# Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
|
||||
# resulting binary.
|
||||
hardcode_direct="$hardcode_direct"
|
||||
|
||||
# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
|
||||
# resulting binary.
|
||||
hardcode_minus_L="$hardcode_minus_L"
|
||||
|
||||
EOF
|
|
@ -0,0 +1,378 @@
|
|||
AC_PREREQ([2.63])
|
||||
|
||||
m4_define([nma_major_version], [1])
|
||||
m4_define([nma_minor_version], [8])
|
||||
m4_define([nma_micro_version], [24])
|
||||
m4_define([nma_version],
|
||||
[nma_major_version.nma_minor_version.nma_micro_version])
|
||||
|
||||
AC_INIT([nm-applet],
|
||||
[nma_version],
|
||||
[https://gitlab.gnome.org/GNOME/network-manager-applet/issues],
|
||||
[network-manager-applet])
|
||||
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
|
||||
AM_INIT_AUTOMAKE([1.11 no-dist-gzip dist-xz -Wno-portability])
|
||||
AM_MAINTAINER_MODE([enable])
|
||||
AM_SILENT_RULES([yes])
|
||||
|
||||
NMA_MAJOR_VERSION=nma_major_version
|
||||
NMA_MINOR_VERSION=nma_minor_version
|
||||
NMA_MICRO_VERSION=nma_micro_version
|
||||
NMA_VERSION=nma_version
|
||||
AC_SUBST(NMA_MAJOR_VERSION)
|
||||
AC_SUBST(NMA_MINOR_VERSION)
|
||||
AC_SUBST(NMA_MICRO_VERSION)
|
||||
AC_SUBST(NMA_VERSION)
|
||||
|
||||
dnl
|
||||
dnl Require programs
|
||||
dnl
|
||||
AC_PROG_CC
|
||||
AM_PROG_CC_C_O
|
||||
PKG_PROG_PKG_CONFIG
|
||||
|
||||
AC_CHECK_PROG([has_file], file, yes, no)
|
||||
if test x$has_file = xno ; then
|
||||
AC_MSG_ERROR(["file" utility not found.])
|
||||
fi
|
||||
|
||||
AC_CHECK_PROG([has_find], find, yes, no)
|
||||
if test x$has_find = xno ; then
|
||||
AC_MSG_ERROR(["find" utility not found.])
|
||||
fi
|
||||
|
||||
dnl Define _GNU_SOURCE for various things like strcasestr()
|
||||
AC_USE_SYSTEM_EXTENSIONS
|
||||
|
||||
dnl Initialize libtool
|
||||
LT_PREREQ([2.2.6])
|
||||
LT_INIT
|
||||
|
||||
GIT_SHA_RECORD(NMA_GIT_SHA)
|
||||
|
||||
dnl
|
||||
dnl Checks for typedefs, structures, and compiler characteristics.
|
||||
dnl
|
||||
AC_TYPE_PID_T
|
||||
|
||||
dnl
|
||||
dnl translation support
|
||||
dnl
|
||||
AM_GNU_GETTEXT([external])
|
||||
AM_GNU_GETTEXT_VERSION([0.18])
|
||||
|
||||
GETTEXT_PACKAGE=nm-applet
|
||||
AC_SUBST(GETTEXT_PACKAGE)
|
||||
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package])
|
||||
|
||||
# Check for iso-codes for country names translation
|
||||
AC_MSG_CHECKING([whether to disable iso-codes at build-time])
|
||||
AC_ARG_ENABLE([iso-codes],
|
||||
AS_HELP_STRING([--disable-iso-codes],[do not check for iso-codes at build-time]),
|
||||
[],[disable_iso_codes_check=no])
|
||||
if test x$disable_iso_codes_check = xno ; then
|
||||
AC_MSG_RESULT([no])
|
||||
else
|
||||
AC_MSG_RESULT([yes])
|
||||
fi
|
||||
|
||||
if test x$disable_iso_codes_check = "xno" ; then
|
||||
AC_MSG_CHECKING([whether iso-codes has iso_3166 domain])
|
||||
if $PKG_CONFIG --variable=domains iso-codes | grep iso_3166 >/dev/null ; then
|
||||
AC_MSG_RESULT([yes])
|
||||
else
|
||||
AC_MSG_RESULT([no])
|
||||
fi
|
||||
AC_DEFINE_UNQUOTED([ISO_CODES_PREFIX],["`$PKG_CONFIG --variable=prefix iso-codes`"],[ISO codes prefix])
|
||||
PKG_CHECK_MODULES(ISO_CODES, [iso-codes],
|
||||
[],
|
||||
[echo -e "\n$ISO_CODES_PKG_ERRORS.\n"
|
||||
echo "Consider installing the package or adjusting the PKG_CONFIG_PATH environment variable."
|
||||
echo "You can also disable build-time check for 'iso-codes' via --disable-iso-codes";
|
||||
exit 1;])
|
||||
else
|
||||
AC_DEFINE_UNQUOTED([ISO_CODES_PREFIX],["$prefix"],[ISO codes prefix])
|
||||
fi
|
||||
|
||||
# Check for mobile-broadband-provider-info for Mobile Broadband wizard
|
||||
AC_MSG_CHECKING([whether to disable mobile-broadband-provider-info at build-time])
|
||||
AC_ARG_ENABLE([mobile-broadband-provider-info],
|
||||
AS_HELP_STRING([--disable-mobile-broadband-provider-info],[do not check for mobile-broadband-provider-info at build-time]),
|
||||
[],[disable_mobile_broadband_provider_info_check=no])
|
||||
if test x$disable_mobile_broadband_provider_info_check = xno ; then
|
||||
AC_MSG_RESULT([no])
|
||||
else
|
||||
AC_MSG_RESULT([yes])
|
||||
fi
|
||||
|
||||
if test x$disable_mobile_broadband_provider_info_check = "xno" ; then
|
||||
AC_DEFINE_UNQUOTED([MOBILE_BROADBAND_PROVIDER_INFO_DATABASE],["`$PKG_CONFIG --variable=database mobile-broadband-provider-info`"],[Mobile Broadband Service Provider Information Database location])
|
||||
PKG_CHECK_MODULES(MOBILE_BROADBAND_PROVIDER_INFO, [mobile-broadband-provider-info],
|
||||
[],
|
||||
[echo -e "\n$MOBILE_BROADBAND_PROVIDER_INFO_PKG_ERRORS.\n"
|
||||
echo "Consider installing the package or adjusting the PKG_CONFIG_PATH environment variable."
|
||||
echo "You can also disable build-time check for 'mobile-broadband-provider-info' via --disable-mobile-broadband-provider-info";
|
||||
exit 1;])
|
||||
else
|
||||
AC_DEFINE_UNQUOTED([MOBILE_BROADBAND_PROVIDER_INFO_DATABASE],["$prefix/share/mobile-broadband-provider-info/serviceproviders.xml"],[Mobile Broadband Service Provider Information Database location])
|
||||
fi
|
||||
|
||||
dnl
|
||||
dnl API documentation
|
||||
dnl
|
||||
GTK_DOC_CHECK(1.0)
|
||||
|
||||
AC_ARG_WITH(libnm-gtk, AS_HELP_STRING([--with-libnm-gtk], [build legacy library libnm-gtk which depends on libnm-glib/libnm-util/dbus-glib (deprecated)]))
|
||||
if test "$with_libnm_gtk" == yes; then
|
||||
PKG_CHECK_MODULES(LIBNM_GLIB,
|
||||
[gio-2.0 >= 2.38
|
||||
NetworkManager >= 1.7
|
||||
libnm-glib >= 1.7
|
||||
libnm-util >= 1.7
|
||||
libnm-glib-vpn >= 1.7
|
||||
gmodule-export-2.0],
|
||||
:,
|
||||
[AC_MSG_FAILURE([$LIBNM_GLIB_PKG_ERRORS
|
||||
|
||||
Configure without --with-libnm-gtk if you do not need the legacy library])])
|
||||
LIBNM_GLIB_CFLAGS="$LIBNM_GLIB_CFLAGS -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_38"
|
||||
LIBNM_GLIB_CFLAGS="$LIBNM_GLIB_CFLAGS -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_38"
|
||||
LIBNM_GLIB_CFLAGS="$LIBNM_GLIB_CFLAGS -DNM_VERSION_MIN_REQUIRED=NM_VERSION_1_4"
|
||||
LIBNM_GLIB_CFLAGS="$LIBNM_GLIB_CFLAGS -DNM_VERSION_MAX_ALLOWED=NM_VERSION_1_4"
|
||||
else
|
||||
with_libnm_gtk=no
|
||||
fi
|
||||
AM_CONDITIONAL(WITH_LIBNM_GTK, test "$with_libnm_gtk" == "yes")
|
||||
|
||||
PKG_CHECK_MODULES(LIBNM, [libnm >= 1.7 gio-2.0 >= 2.38 gmodule-export-2.0])
|
||||
LIBNM_CFLAGS="$LIBNM_CFLAGS -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_38"
|
||||
LIBNM_CFLAGS="$LIBNM_CFLAGS -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_38"
|
||||
LIBNM_CFLAGS="$LIBNM_CFLAGS -DNM_VERSION_MIN_REQUIRED=NM_VERSION_1_8"
|
||||
LIBNM_CFLAGS="$LIBNM_CFLAGS -DNM_VERSION_MAX_ALLOWED=NM_VERSION_1_8"
|
||||
|
||||
PKG_CHECK_MODULES(LIBSECRET, [libsecret-1 >= 0.18])
|
||||
|
||||
# Check for libnotify >= 0.7
|
||||
PKG_CHECK_MODULES(LIBNOTIFY_07, [libnotify >= 0.7], [have_libnotify_07=yes],[have_libnotify_07=no])
|
||||
if test x"$have_libnotify_07" = "xyes"; then
|
||||
AC_DEFINE(HAVE_LIBNOTIFY_07, 1, [Define if you have libnotify 0.7 or later])
|
||||
fi
|
||||
PKG_CHECK_MODULES(NOTIFY, [libnotify >= 0.4.3])
|
||||
|
||||
PKG_CHECK_MODULES(GTK3, gtk+-3.0 >= 3.10)
|
||||
GTK3_CFLAGS="$GTK3_CFLAGS -DGDK_VERSION_MIN_REQUIRED=GDK_VERSION_3_10 -DGDK_VERSION_MAX_ALLOWED=GDK_VERSION_3_10"
|
||||
|
||||
AC_ARG_WITH(libnma-gtk4, AS_HELP_STRING([--with-libnma-gtk4], [build EXPERIMENTAL libnma-gtk4 library for use with GTK4]))
|
||||
if test "$with_libnma_gtk4" == yes; then
|
||||
PKG_CHECK_MODULES(GTK4, gtk4 >= 3.94)
|
||||
GTK4_CFLAGS="$GTK4_CFLAGS -DGTK_VERSION_MIN_REQUIRED=GTK_VERSION_3_96 -DGTK_VERSION_MAX_ALLOWED=GTK_VERSION_3_96"
|
||||
else
|
||||
with_libnma_gtk4=no
|
||||
fi
|
||||
AM_CONDITIONAL(WITH_LIBNMA_GTK4, test "$with_libnma_gtk4" != "no")
|
||||
|
||||
# No such thing yet, just same lame duck placeholders.
|
||||
# it may actually end up being called differently.
|
||||
AC_DEFINE(WITH_GCR_GTK4, 0, [Define if GTK4 Gcr is available])
|
||||
AM_CONDITIONAL(WITH_GCR_GTK4, false)
|
||||
|
||||
AC_ARG_WITH([appindicator],
|
||||
AS_HELP_STRING([--with-appindicator=no|yes|auto|ayatana|ubuntu], [Build with lib(ayatana-)appindicator support in addition to xembed systray support.]),
|
||||
[], [with_appindicator=no])
|
||||
if test "$with_appindicator" != "no"; then
|
||||
if test "$with_appindicator" = "yes" -o "$with_appindicator" = "auto"; then
|
||||
PKG_CHECK_MODULES(APPINDICATOR, ayatana-appindicator3-0.1, [with_appindicator=ayatana], [with_appindicator=no])
|
||||
if test "$with_appindicator" = "no"; then
|
||||
PKG_CHECK_MODULES(APPINDICATOR, appindicator3-0.1, [with_appindicator=ubuntu], [with_appindicator=no])
|
||||
if test "$with_appindicator" = "no"; then
|
||||
AC_MSG_ERROR([Neither Ubuntu's AppIndicator nor Ayatana AppIndicator found. Better --without-appindicator?])
|
||||
fi
|
||||
fi
|
||||
elif test "$with_appindicator" = "ayatana"; then
|
||||
PKG_CHECK_MODULES(APPINDICATOR, ayatana-appindicator3-0.1)
|
||||
elif test "$with_appindicator" = "ubuntu"; then
|
||||
PKG_CHECK_MODULES(APPINDICATOR, appindicator3-0.1)
|
||||
else
|
||||
AC_MSG_ERROR([Invalid --with-appindicator option. Must be one of no|yes|auto|ayatana|ubuntu])
|
||||
fi
|
||||
|
||||
if test "$with_appindicator" = "ayatana"; then
|
||||
PKG_CHECK_MODULES(DBUSMENU, dbusmenu-gtk3-0.4 >= 16.04.0)
|
||||
AC_DEFINE([WITH_APPINDICATOR], 1, [Enable AppIndicator support and use Ayatana AppIndicator])
|
||||
AC_DEFINE([USE_AYATANA_INDICATORS], 1, [Explicitly enforce Ayatana AppIndicator])
|
||||
else
|
||||
PKG_CHECK_MODULES(DBUSMENU, dbusmenu-gtk3-0.4 >= 16.04.0)
|
||||
AC_DEFINE([WITH_APPINDICATOR], 1, [Enable AppIndicator support and use Ubuntu AppIndicator])
|
||||
AC_DEFINE([USE_AYATANA_INDICATORS], 0, [Explicitly enforce Ayatana AppIndicator])
|
||||
fi
|
||||
fi
|
||||
|
||||
AM_CONDITIONAL(HAVE_GBT, test x"$have_gbt" = "xyes")
|
||||
|
||||
dnl ModemManager1 with libmm-glib for WWAN support
|
||||
AC_ARG_WITH(wwan, AS_HELP_STRING([--with-wwan], [Enable WWAN support (default: yes)]))
|
||||
if (test "${with_wwan}" == "no"); then
|
||||
AC_DEFINE(WITH_WWAN, 0, [Define if you have ModemManager/WWAN support])
|
||||
else
|
||||
PKG_CHECK_MODULES(MM_GLIB,
|
||||
[mm-glib],,
|
||||
AC_MSG_ERROR([libmm-glib is needed for WWAN support. Use --without-wwan to build without it.]))
|
||||
AC_DEFINE(WITH_WWAN, 1, [Define if you have ModemManager/WWAN support])
|
||||
fi
|
||||
AM_CONDITIONAL(WITH_WWAN, test "${with_wwan}" != "no")
|
||||
|
||||
dnl Check for gudev
|
||||
PKG_CHECK_MODULES(GUDEV, gudev-1.0 >= 147)
|
||||
|
||||
dnl SELinux
|
||||
AC_ARG_WITH(selinux, AS_HELP_STRING([--with-selinux], [Enable support for adjusting SELinux labels in configuration editor (default: yes)]))
|
||||
if (test "${with_selinux}" == "no"); then
|
||||
AC_DEFINE(WITH_SELINUX, 0, [Define if libselinux is available])
|
||||
else
|
||||
PKG_CHECK_MODULES(SELINUX,
|
||||
[libselinux],,
|
||||
AC_MSG_ERROR([libselinux is needed for SELinux label support in configuration editor. Use --without-selinux to build without it.]))
|
||||
AC_DEFINE(WITH_SELINUX, 1, [Define if libselinux is available])
|
||||
fi
|
||||
AM_CONDITIONAL(WITH_SELINUX, test "${with_selinux}" != "no")
|
||||
|
||||
dnl Jansson for team configuration editing
|
||||
AC_ARG_WITH(team, AS_HELP_STRING([--with-team], [Enable team configuration editor (default: yes)]))
|
||||
if (test "${with_team}" == "no"); then
|
||||
AC_DEFINE(WITH_JANSSON, 0, [Define if Jansson is available])
|
||||
else
|
||||
PKG_CHECK_MODULES(JANSSON,
|
||||
[jansson >= 2.7],,
|
||||
AC_MSG_ERROR([jansson is needed for team configuration editor. Use --without-team to build without it.]))
|
||||
AC_DEFINE(WITH_JANSSON, 1, [Define if Jansson is available])
|
||||
fi
|
||||
AM_CONDITIONAL(WITH_JANSSON, test "${with_team}" != "no")
|
||||
|
||||
dnl GCR for PKCS#11 enabled certificate chooser
|
||||
AC_ARG_WITH(gcr, AS_HELP_STRING([--with-gcr], [Enable advanced certificate chooser (default: auto)]))
|
||||
if (test "${with_gcr}" == "no"); then
|
||||
have_gcr=no
|
||||
else
|
||||
PKG_CHECK_MODULES(GCR,
|
||||
[gcr-3 >= 3.14, gck-1 >= 3.14],
|
||||
dnl GCR API is declared subject to change, do an extensive check of the prototypes
|
||||
GCR_CFLAGS="$GCR_CFLAGS -DGCR_API_SUBJECT_TO_CHANGE -DGCK_API_SUBJECT_TO_CHANGE"
|
||||
CFLAGS_SAVED="$CFLAGS"
|
||||
CFLAGS="$CFLAGS $GCR_CFLAGS"
|
||||
AC_MSG_CHECKING([for GCR usefulness])
|
||||
AC_COMPILE_IFELSE([AC_LANG_SOURCE([
|
||||
#include <gcr/gcr.h>
|
||||
#include <gck/gck.h>
|
||||
|
||||
const GckAttribute *gck_attributes_find (GckAttributes *attrs, gulong attr_type);
|
||||
gboolean gck_attributes_find_string (GckAttributes *attrs, gulong attr_type, gchar **value);
|
||||
gboolean gck_attributes_find_ulong (GckAttributes *attrs, gulong attr_type, gulong *value);
|
||||
GckAttributes *gck_attributes_new_empty (gulong first_type, ...);
|
||||
void gck_attributes_unref (gpointer attrs);
|
||||
void gck_builder_add_all (GckBuilder *builder, GckAttributes *attrs);
|
||||
void gck_builder_add_only (GckBuilder *builder, GckAttributes *attrs, gulong only_type, ...);
|
||||
GckAttributes *gck_builder_end (GckBuilder *builder);
|
||||
GckBuilder *gck_builder_new (GckBuilderFlags flags);
|
||||
void gck_enumerator_next_async (GckEnumerator *self, gint max_objects, GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback, gpointer user_data);
|
||||
GList *gck_enumerator_next_finish (GckEnumerator *self, GAsyncResult *result, GError **error);
|
||||
void gck_list_unref_free (GList *reflist);
|
||||
GList *gck_modules_get_slots (GList *modules, gboolean token_present);
|
||||
void gck_modules_initialize_registered_async (GCancellable *cancellable, GAsyncReadyCallback callback,
|
||||
gpointer user_data);
|
||||
GList *gck_modules_initialize_registered_finish (GAsyncResult *result, GError **error);
|
||||
void gck_object_get_async (GckObject *self, const gulong *attr_types, guint n_attr_types,
|
||||
GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data);
|
||||
GckAttributes *gck_object_get_finish (GckObject *self, GAsyncResult *result, GError **error);
|
||||
void gck_session_login_async (GckSession *self, gulong user_type, const guchar *pin,
|
||||
gsize n_pin, GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback, gpointer user_data);
|
||||
gboolean gck_session_login_finish (GckSession *self, GAsyncResult *result, GError **error);
|
||||
GckSlotInfo *gck_slot_get_info (GckSlot *self);
|
||||
GckTokenInfo *gck_slot_get_token_info (GckSlot *self);
|
||||
void gck_slot_open_session_async (GckSlot *self, GckSessionOptions options, GCancellable *cancellable,
|
||||
GAsyncReadyCallback callback, gpointer user_data);
|
||||
GckSession *gck_slot_open_session_finish (GckSlot *self, GAsyncResult *result, GError **error);
|
||||
void gck_token_info_free (GckTokenInfo *token_info);
|
||||
gchar *gck_uri_build (GckUriData *uri_data, GckUriFlags flags);
|
||||
void gck_uri_data_free (GckUriData *uri_data);
|
||||
GckUriData *gck_uri_parse (const gchar *string, GckUriFlags flags, GError **error);
|
||||
gchar *gcr_certificate_get_issuer_name (GcrCertificate *self);
|
||||
gchar *gcr_certificate_get_subject_name (GcrCertificate *self);
|
||||
GcrCertificate *gcr_simple_certificate_new (const guchar *data, gsize n_data);
|
||||
])],
|
||||
have_gcr=yes,
|
||||
have_gcr=no)
|
||||
AC_MSG_RESULT(${have_gcr})
|
||||
CFLAGS="$CFLAGS_SAVED",
|
||||
have_gcr=no);
|
||||
fi
|
||||
|
||||
if (test "${have_gcr}" == "yes"); then
|
||||
AC_DEFINE(WITH_GCR, 1, [Define if Gcr is available])
|
||||
else
|
||||
if (test "${with_gcr}" == "yes"); then
|
||||
AC_MSG_ERROR([gcr support was requested, but the gcr library is not available.])
|
||||
fi
|
||||
AC_DEFINE(WITH_GCR, 0, [Define if Gcr is available])
|
||||
fi
|
||||
AM_CONDITIONAL(WITH_GCR, test "${have_gcr}" == "yes")
|
||||
|
||||
dnl Check for gobject introspection
|
||||
GOBJECT_INTROSPECTION_CHECK([0.9.6])
|
||||
|
||||
GLIB_CONFIG_NMA
|
||||
GLIB_GSETTINGS
|
||||
AC_PATH_PROG(GLIB_COMPILE_RESOURCES, glib-compile-resources)
|
||||
|
||||
NM_COMPILER_WARNINGS(CFLAGS, [yes])
|
||||
NM_LTO
|
||||
NM_LD_GC
|
||||
|
||||
# Disable extra compiler warning until GTK4 doesn't trigger it via graphene
|
||||
# https://github.com/ebassi/graphene/issues/134
|
||||
if test "$with_libnma_gtk4" == yes; then
|
||||
_CFLAGS_SAVED="$CFLAGS"
|
||||
CFLAGS="$CFLAGS $GTK4_CFLAGS"
|
||||
NM_COMPILER_WARNING([_CFLAGS], [float-equal], [#include <gtk/gtk.h>])
|
||||
CFLAGS="$_CFLAGS_SAVED $_CFLAGS"
|
||||
fi
|
||||
|
||||
AC_ARG_WITH(more-asserts,
|
||||
AS_HELP_STRING([--with-more-asserts=level], [Enable more assertions for debugging (default: 0)]),
|
||||
[more_asserts=${with_more_asserts}],
|
||||
[more_asserts=no])
|
||||
if test "${more_asserts}" = "no"; then
|
||||
more_asserts=0
|
||||
else
|
||||
if test "${more_asserts}" = "yes"; then
|
||||
more_asserts=100
|
||||
fi
|
||||
fi
|
||||
AC_DEFINE_UNQUOTED(NM_MORE_ASSERTS, $more_asserts, [Define if more asserts are enabled])
|
||||
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
Makefile
|
||||
src/libnm-gtk/libnm-gtk.pc
|
||||
src/libnma/libnma.pc
|
||||
src/libnma/libnma-gtk4.pc
|
||||
po/Makefile.in
|
||||
man/nm-applet.1
|
||||
man/nm-connection-editor.1
|
||||
org.gnome.nm-applet.gschema.xml
|
||||
src/libnma/nma-version.h
|
||||
])
|
||||
AC_OUTPUT
|
||||
|
||||
echo ""
|
||||
echo " Build legacy library libnm-gtk: --with-libnm-gtk=${with_libnm_gtk}"
|
||||
echo " Build EXPERIMENTAL libnma-gtk4 library for use with GTK4: --with-libnma-gtk4=${with_libnma_gtk4}"
|
||||
echo " GCR: --with-gcr=$have_gcr"
|
||||
echo " LTO: --enable-lto=$enable_lto"
|
||||
echo " Linker garbage collection: --enable-ld-gc=$enable_ld_gc"
|
||||
echo " appindicator: $with_appindicator"
|
||||
echo ""
|
|
@ -0,0 +1,791 @@
|
|||
#! /bin/sh
|
||||
# depcomp - compile a program generating dependencies as side-effects
|
||||
|
||||
scriptversion=2018-03-07.03; # UTC
|
||||
|
||||
# Copyright (C) 1999-2018 Free Software Foundation, Inc.
|
||||
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2, or (at your option)
|
||||
# any later version.
|
||||
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
# As a special exception to the GNU General Public License, if you
|
||||
# distribute this file as part of a program that contains a
|
||||
# configuration script generated by Autoconf, you may include it under
|
||||
# the same distribution terms that you use for the rest of that program.
|
||||
|
||||
# Originally written by Alexandre Oliva <oliva@dcc.unicamp.br>.
|
||||
|
||||
case $1 in
|
||||
'')
|
||||
echo "$0: No command. Try '$0 --help' for more information." 1>&2
|
||||
exit 1;
|
||||
;;
|
||||
-h | --h*)
|
||||
cat <<\EOF
|
||||
Usage: depcomp [--help] [--version] PROGRAM [ARGS]
|
||||
|
||||
Run PROGRAMS ARGS to compile a file, generating dependencies
|
||||
as side-effects.
|
||||
|
||||
Environment variables:
|
||||
depmode Dependency tracking mode.
|
||||
source Source file read by 'PROGRAMS ARGS'.
|
||||
object Object file output by 'PROGRAMS ARGS'.
|
||||
DEPDIR directory where to store dependencies.
|
||||
depfile Dependency file to output.
|
||||
tmpdepfile Temporary file to use when outputting dependencies.
|
||||
libtool Whether libtool is used (yes/no).
|
||||
|
||||
Report bugs to <bug-automake@gnu.org>.
|
||||
EOF
|
||||
exit $?
|
||||
;;
|
||||
-v | --v*)
|
||||
echo "depcomp $scriptversion"
|
||||
exit $?
|
||||
;;
|
||||
esac
|
||||
|
||||
# Get the directory component of the given path, and save it in the
|
||||
# global variables '$dir'. Note that this directory component will
|
||||
# be either empty or ending with a '/' character. This is deliberate.
|
||||
set_dir_from ()
|
||||
{
|
||||
case $1 in
|
||||
*/*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;;
|
||||
*) dir=;;
|
||||
esac
|
||||
}
|
||||
|
||||
# Get the suffix-stripped basename of the given path, and save it the
|
||||
# global variable '$base'.
|
||||
set_base_from ()
|
||||
{
|
||||
base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'`
|
||||
}
|
||||
|
||||
# If no dependency file was actually created by the compiler invocation,
|
||||
# we still have to create a dummy depfile, to avoid errors with the
|
||||
# Makefile "include basename.Plo" scheme.
|
||||
make_dummy_depfile ()
|
||||
{
|
||||
echo "#dummy" > "$depfile"
|
||||
}
|
||||
|
||||
# Factor out some common post-processing of the generated depfile.
|
||||
# Requires the auxiliary global variable '$tmpdepfile' to be set.
|
||||
aix_post_process_depfile ()
|
||||
{
|
||||
# If the compiler actually managed to produce a dependency file,
|
||||
# post-process it.
|
||||
if test -f "$tmpdepfile"; then
|
||||
# Each line is of the form 'foo.o: dependency.h'.
|
||||
# Do two passes, one to just change these to
|
||||
# $object: dependency.h
|
||||
# and one to simply output
|
||||
# dependency.h:
|
||||
# which is needed to avoid the deleted-header problem.
|
||||
{ sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
|
||||
sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile"
|
||||
} > "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
else
|
||||
make_dummy_depfile
|
||||
fi
|
||||
}
|
||||
|
||||
# A tabulation character.
|
||||
tab=' '
|
||||
# A newline character.
|
||||
nl='
|
||||
'
|
||||
# Character ranges might be problematic outside the C locale.
|
||||
# These definitions help.
|
||||
upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ
|
||||
lower=abcdefghijklmnopqrstuvwxyz
|
||||
digits=0123456789
|
||||
alpha=${upper}${lower}
|
||||
|
||||
if test -z "$depmode" || test -z "$source" || test -z "$object"; then
|
||||
echo "depcomp: Variables source, object and depmode must be set" 1>&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po.
|
||||
depfile=${depfile-`echo "$object" |
|
||||
sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`}
|
||||
tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`}
|
||||
|
||||
rm -f "$tmpdepfile"
|
||||
|
||||
# Avoid interferences from the environment.
|
||||
gccflag= dashmflag=
|
||||
|
||||
# Some modes work just like other modes, but use different flags. We
|
||||
# parameterize here, but still list the modes in the big case below,
|
||||
# to make depend.m4 easier to write. Note that we *cannot* use a case
|
||||
# here, because this file can only contain one case statement.
|
||||
if test "$depmode" = hp; then
|
||||
# HP compiler uses -M and no extra arg.
|
||||
gccflag=-M
|
||||
depmode=gcc
|
||||
fi
|
||||
|
||||
if test "$depmode" = dashXmstdout; then
|
||||
# This is just like dashmstdout with a different argument.
|
||||
dashmflag=-xM
|
||||
depmode=dashmstdout
|
||||
fi
|
||||
|
||||
cygpath_u="cygpath -u -f -"
|
||||
if test "$depmode" = msvcmsys; then
|
||||
# This is just like msvisualcpp but w/o cygpath translation.
|
||||
# Just convert the backslash-escaped backslashes to single forward
|
||||
# slashes to satisfy depend.m4
|
||||
cygpath_u='sed s,\\\\,/,g'
|
||||
depmode=msvisualcpp
|
||||
fi
|
||||
|
||||
if test "$depmode" = msvc7msys; then
|
||||
# This is just like msvc7 but w/o cygpath translation.
|
||||
# Just convert the backslash-escaped backslashes to single forward
|
||||
# slashes to satisfy depend.m4
|
||||
cygpath_u='sed s,\\\\,/,g'
|
||||
depmode=msvc7
|
||||
fi
|
||||
|
||||
if test "$depmode" = xlc; then
|
||||
# IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information.
|
||||
gccflag=-qmakedep=gcc,-MF
|
||||
depmode=gcc
|
||||
fi
|
||||
|
||||
case "$depmode" in
|
||||
gcc3)
|
||||
## gcc 3 implements dependency tracking that does exactly what
|
||||
## we want. Yay! Note: for some reason libtool 1.4 doesn't like
|
||||
## it if -MD -MP comes after the -MF stuff. Hmm.
|
||||
## Unfortunately, FreeBSD c89 acceptance of flags depends upon
|
||||
## the command line argument order; so add the flags where they
|
||||
## appear in depend2.am. Note that the slowdown incurred here
|
||||
## affects only configure: in makefiles, %FASTDEP% shortcuts this.
|
||||
for arg
|
||||
do
|
||||
case $arg in
|
||||
-c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
|
||||
*) set fnord "$@" "$arg" ;;
|
||||
esac
|
||||
shift # fnord
|
||||
shift # $arg
|
||||
done
|
||||
"$@"
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
mv "$tmpdepfile" "$depfile"
|
||||
;;
|
||||
|
||||
gcc)
|
||||
## Note that this doesn't just cater to obsosete pre-3.x GCC compilers.
|
||||
## but also to in-use compilers like IMB xlc/xlC and the HP C compiler.
|
||||
## (see the conditional assignment to $gccflag above).
|
||||
## There are various ways to get dependency output from gcc. Here's
|
||||
## why we pick this rather obscure method:
|
||||
## - Don't want to use -MD because we'd like the dependencies to end
|
||||
## up in a subdir. Having to rename by hand is ugly.
|
||||
## (We might end up doing this anyway to support other compilers.)
|
||||
## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like
|
||||
## -MM, not -M (despite what the docs say). Also, it might not be
|
||||
## supported by the other compilers which use the 'gcc' depmode.
|
||||
## - Using -M directly means running the compiler twice (even worse
|
||||
## than renaming).
|
||||
if test -z "$gccflag"; then
|
||||
gccflag=-MD,
|
||||
fi
|
||||
"$@" -Wp,"$gccflag$tmpdepfile"
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
# The second -e expression handles DOS-style file names with drive
|
||||
# letters.
|
||||
sed -e 's/^[^:]*: / /' \
|
||||
-e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile"
|
||||
## This next piece of magic avoids the "deleted header file" problem.
|
||||
## The problem is that when a header file which appears in a .P file
|
||||
## is deleted, the dependency causes make to die (because there is
|
||||
## typically no way to rebuild the header). We avoid this by adding
|
||||
## dummy dependencies for each header file. Too bad gcc doesn't do
|
||||
## this for us directly.
|
||||
## Some versions of gcc put a space before the ':'. On the theory
|
||||
## that the space means something, we add a space to the output as
|
||||
## well. hp depmode also adds that space, but also prefixes the VPATH
|
||||
## to the object. Take care to not repeat it in the output.
|
||||
## Some versions of the HPUX 10.20 sed can't process this invocation
|
||||
## correctly. Breaking it into two sed invocations is a workaround.
|
||||
tr ' ' "$nl" < "$tmpdepfile" \
|
||||
| sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
|
||||
| sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
hp)
|
||||
# This case exists only to let depend.m4 do its work. It works by
|
||||
# looking at the text of this script. This case will never be run,
|
||||
# since it is checked for above.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
sgi)
|
||||
if test "$libtool" = yes; then
|
||||
"$@" "-Wp,-MDupdate,$tmpdepfile"
|
||||
else
|
||||
"$@" -MDupdate "$tmpdepfile"
|
||||
fi
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
|
||||
if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files
|
||||
echo "$object : \\" > "$depfile"
|
||||
# Clip off the initial element (the dependent). Don't try to be
|
||||
# clever and replace this with sed code, as IRIX sed won't handle
|
||||
# lines with more than a fixed number of characters (4096 in
|
||||
# IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines;
|
||||
# the IRIX cc adds comments like '#:fec' to the end of the
|
||||
# dependency line.
|
||||
tr ' ' "$nl" < "$tmpdepfile" \
|
||||
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \
|
||||
| tr "$nl" ' ' >> "$depfile"
|
||||
echo >> "$depfile"
|
||||
# The second pass generates a dummy entry for each header file.
|
||||
tr ' ' "$nl" < "$tmpdepfile" \
|
||||
| sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \
|
||||
>> "$depfile"
|
||||
else
|
||||
make_dummy_depfile
|
||||
fi
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
xlc)
|
||||
# This case exists only to let depend.m4 do its work. It works by
|
||||
# looking at the text of this script. This case will never be run,
|
||||
# since it is checked for above.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
aix)
|
||||
# The C for AIX Compiler uses -M and outputs the dependencies
|
||||
# in a .u file. In older versions, this file always lives in the
|
||||
# current directory. Also, the AIX compiler puts '$object:' at the
|
||||
# start of each line; $object doesn't have directory information.
|
||||
# Version 6 uses the directory in both cases.
|
||||
set_dir_from "$object"
|
||||
set_base_from "$object"
|
||||
if test "$libtool" = yes; then
|
||||
tmpdepfile1=$dir$base.u
|
||||
tmpdepfile2=$base.u
|
||||
tmpdepfile3=$dir.libs/$base.u
|
||||
"$@" -Wc,-M
|
||||
else
|
||||
tmpdepfile1=$dir$base.u
|
||||
tmpdepfile2=$dir$base.u
|
||||
tmpdepfile3=$dir$base.u
|
||||
"$@" -M
|
||||
fi
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||
exit $stat
|
||||
fi
|
||||
|
||||
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||
do
|
||||
test -f "$tmpdepfile" && break
|
||||
done
|
||||
aix_post_process_depfile
|
||||
;;
|
||||
|
||||
tcc)
|
||||
# tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26
|
||||
# FIXME: That version still under development at the moment of writing.
|
||||
# Make that this statement remains true also for stable, released
|
||||
# versions.
|
||||
# It will wrap lines (doesn't matter whether long or short) with a
|
||||
# trailing '\', as in:
|
||||
#
|
||||
# foo.o : \
|
||||
# foo.c \
|
||||
# foo.h \
|
||||
#
|
||||
# It will put a trailing '\' even on the last line, and will use leading
|
||||
# spaces rather than leading tabs (at least since its commit 0394caf7
|
||||
# "Emit spaces for -MD").
|
||||
"$@" -MD -MF "$tmpdepfile"
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
# Each non-empty line is of the form 'foo.o : \' or ' dep.h \'.
|
||||
# We have to change lines of the first kind to '$object: \'.
|
||||
sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile"
|
||||
# And for each line of the second kind, we have to emit a 'dep.h:'
|
||||
# dummy dependency, to avoid the deleted-header problem.
|
||||
sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
## The order of this option in the case statement is important, since the
|
||||
## shell code in configure will try each of these formats in the order
|
||||
## listed in this file. A plain '-MD' option would be understood by many
|
||||
## compilers, so we must ensure this comes after the gcc and icc options.
|
||||
pgcc)
|
||||
# Portland's C compiler understands '-MD'.
|
||||
# Will always output deps to 'file.d' where file is the root name of the
|
||||
# source file under compilation, even if file resides in a subdirectory.
|
||||
# The object file name does not affect the name of the '.d' file.
|
||||
# pgcc 10.2 will output
|
||||
# foo.o: sub/foo.c sub/foo.h
|
||||
# and will wrap long lines using '\' :
|
||||
# foo.o: sub/foo.c ... \
|
||||
# sub/foo.h ... \
|
||||
# ...
|
||||
set_dir_from "$object"
|
||||
# Use the source, not the object, to determine the base name, since
|
||||
# that's sadly what pgcc will do too.
|
||||
set_base_from "$source"
|
||||
tmpdepfile=$base.d
|
||||
|
||||
# For projects that build the same source file twice into different object
|
||||
# files, the pgcc approach of using the *source* file root name can cause
|
||||
# problems in parallel builds. Use a locking strategy to avoid stomping on
|
||||
# the same $tmpdepfile.
|
||||
lockdir=$base.d-lock
|
||||
trap "
|
||||
echo '$0: caught signal, cleaning up...' >&2
|
||||
rmdir '$lockdir'
|
||||
exit 1
|
||||
" 1 2 13 15
|
||||
numtries=100
|
||||
i=$numtries
|
||||
while test $i -gt 0; do
|
||||
# mkdir is a portable test-and-set.
|
||||
if mkdir "$lockdir" 2>/dev/null; then
|
||||
# This process acquired the lock.
|
||||
"$@" -MD
|
||||
stat=$?
|
||||
# Release the lock.
|
||||
rmdir "$lockdir"
|
||||
break
|
||||
else
|
||||
# If the lock is being held by a different process, wait
|
||||
# until the winning process is done or we timeout.
|
||||
while test -d "$lockdir" && test $i -gt 0; do
|
||||
sleep 1
|
||||
i=`expr $i - 1`
|
||||
done
|
||||
fi
|
||||
i=`expr $i - 1`
|
||||
done
|
||||
trap - 1 2 13 15
|
||||
if test $i -le 0; then
|
||||
echo "$0: failed to acquire lock after $numtries attempts" >&2
|
||||
echo "$0: check lockdir '$lockdir'" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
# Each line is of the form `foo.o: dependent.h',
|
||||
# or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'.
|
||||
# Do two passes, one to just change these to
|
||||
# `$object: dependent.h' and one to simply `dependent.h:'.
|
||||
sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
|
||||
# Some versions of the HPUX 10.20 sed can't process this invocation
|
||||
# correctly. Breaking it into two sed invocations is a workaround.
|
||||
sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \
|
||||
| sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
hp2)
|
||||
# The "hp" stanza above does not work with aCC (C++) and HP's ia64
|
||||
# compilers, which have integrated preprocessors. The correct option
|
||||
# to use with these is +Maked; it writes dependencies to a file named
|
||||
# 'foo.d', which lands next to the object file, wherever that
|
||||
# happens to be.
|
||||
# Much of this is similar to the tru64 case; see comments there.
|
||||
set_dir_from "$object"
|
||||
set_base_from "$object"
|
||||
if test "$libtool" = yes; then
|
||||
tmpdepfile1=$dir$base.d
|
||||
tmpdepfile2=$dir.libs/$base.d
|
||||
"$@" -Wc,+Maked
|
||||
else
|
||||
tmpdepfile1=$dir$base.d
|
||||
tmpdepfile2=$dir$base.d
|
||||
"$@" +Maked
|
||||
fi
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile1" "$tmpdepfile2"
|
||||
exit $stat
|
||||
fi
|
||||
|
||||
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2"
|
||||
do
|
||||
test -f "$tmpdepfile" && break
|
||||
done
|
||||
if test -f "$tmpdepfile"; then
|
||||
sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile"
|
||||
# Add 'dependent.h:' lines.
|
||||
sed -ne '2,${
|
||||
s/^ *//
|
||||
s/ \\*$//
|
||||
s/$/:/
|
||||
p
|
||||
}' "$tmpdepfile" >> "$depfile"
|
||||
else
|
||||
make_dummy_depfile
|
||||
fi
|
||||
rm -f "$tmpdepfile" "$tmpdepfile2"
|
||||
;;
|
||||
|
||||
tru64)
|
||||
# The Tru64 compiler uses -MD to generate dependencies as a side
|
||||
# effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'.
|
||||
# At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put
|
||||
# dependencies in 'foo.d' instead, so we check for that too.
|
||||
# Subdirectories are respected.
|
||||
set_dir_from "$object"
|
||||
set_base_from "$object"
|
||||
|
||||
if test "$libtool" = yes; then
|
||||
# Libtool generates 2 separate objects for the 2 libraries. These
|
||||
# two compilations output dependencies in $dir.libs/$base.o.d and
|
||||
# in $dir$base.o.d. We have to check for both files, because
|
||||
# one of the two compilations can be disabled. We should prefer
|
||||
# $dir$base.o.d over $dir.libs/$base.o.d because the latter is
|
||||
# automatically cleaned when .libs/ is deleted, while ignoring
|
||||
# the former would cause a distcleancheck panic.
|
||||
tmpdepfile1=$dir$base.o.d # libtool 1.5
|
||||
tmpdepfile2=$dir.libs/$base.o.d # Likewise.
|
||||
tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504
|
||||
"$@" -Wc,-MD
|
||||
else
|
||||
tmpdepfile1=$dir$base.d
|
||||
tmpdepfile2=$dir$base.d
|
||||
tmpdepfile3=$dir$base.d
|
||||
"$@" -MD
|
||||
fi
|
||||
|
||||
stat=$?
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||
exit $stat
|
||||
fi
|
||||
|
||||
for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3"
|
||||
do
|
||||
test -f "$tmpdepfile" && break
|
||||
done
|
||||
# Same post-processing that is required for AIX mode.
|
||||
aix_post_process_depfile
|
||||
;;
|
||||
|
||||
msvc7)
|
||||
if test "$libtool" = yes; then
|
||||
showIncludes=-Wc,-showIncludes
|
||||
else
|
||||
showIncludes=-showIncludes
|
||||
fi
|
||||
"$@" $showIncludes > "$tmpdepfile"
|
||||
stat=$?
|
||||
grep -v '^Note: including file: ' "$tmpdepfile"
|
||||
if test $stat -ne 0; then
|
||||
rm -f "$tmpdepfile"
|
||||
exit $stat
|
||||
fi
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
# The first sed program below extracts the file names and escapes
|
||||
# backslashes for cygpath. The second sed program outputs the file
|
||||
# name when reading, but also accumulates all include files in the
|
||||
# hold buffer in order to output them again at the end. This only
|
||||
# works with sed implementations that can handle large buffers.
|
||||
sed < "$tmpdepfile" -n '
|
||||
/^Note: including file: *\(.*\)/ {
|
||||
s//\1/
|
||||
s/\\/\\\\/g
|
||||
p
|
||||
}' | $cygpath_u | sort -u | sed -n '
|
||||
s/ /\\ /g
|
||||
s/\(.*\)/'"$tab"'\1 \\/p
|
||||
s/.\(.*\) \\/\1:/
|
||||
H
|
||||
$ {
|
||||
s/.*/'"$tab"'/
|
||||
G
|
||||
p
|
||||
}' >> "$depfile"
|
||||
echo >> "$depfile" # make sure the fragment doesn't end with a backslash
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
msvc7msys)
|
||||
# This case exists only to let depend.m4 do its work. It works by
|
||||
# looking at the text of this script. This case will never be run,
|
||||
# since it is checked for above.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
#nosideeffect)
|
||||
# This comment above is used by automake to tell side-effect
|
||||
# dependency tracking mechanisms from slower ones.
|
||||
|
||||
dashmstdout)
|
||||
# Important note: in order to support this mode, a compiler *must*
|
||||
# always write the preprocessed file to stdout, regardless of -o.
|
||||
"$@" || exit $?
|
||||
|
||||
# Remove the call to Libtool.
|
||||
if test "$libtool" = yes; then
|
||||
while test "X$1" != 'X--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
|
||||
# Remove '-o $object'.
|
||||
IFS=" "
|
||||
for arg
|
||||
do
|
||||
case $arg in
|
||||
-o)
|
||||
shift
|
||||
;;
|
||||
$object)
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"
|
||||
shift # fnord
|
||||
shift # $arg
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
test -z "$dashmflag" && dashmflag=-M
|
||||
# Require at least two characters before searching for ':'
|
||||
# in the target name. This is to cope with DOS-style filenames:
|
||||
# a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise.
|
||||
"$@" $dashmflag |
|
||||
sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile"
|
||||
rm -f "$depfile"
|
||||
cat < "$tmpdepfile" > "$depfile"
|
||||
# Some versions of the HPUX 10.20 sed can't process this sed invocation
|
||||
# correctly. Breaking it into two sed invocations is a workaround.
|
||||
tr ' ' "$nl" < "$tmpdepfile" \
|
||||
| sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
|
||||
| sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
dashXmstdout)
|
||||
# This case only exists to satisfy depend.m4. It is never actually
|
||||
# run, as this mode is specially recognized in the preamble.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
makedepend)
|
||||
"$@" || exit $?
|
||||
# Remove any Libtool call
|
||||
if test "$libtool" = yes; then
|
||||
while test "X$1" != 'X--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
# X makedepend
|
||||
shift
|
||||
cleared=no eat=no
|
||||
for arg
|
||||
do
|
||||
case $cleared in
|
||||
no)
|
||||
set ""; shift
|
||||
cleared=yes ;;
|
||||
esac
|
||||
if test $eat = yes; then
|
||||
eat=no
|
||||
continue
|
||||
fi
|
||||
case "$arg" in
|
||||
-D*|-I*)
|
||||
set fnord "$@" "$arg"; shift ;;
|
||||
# Strip any option that makedepend may not understand. Remove
|
||||
# the object too, otherwise makedepend will parse it as a source file.
|
||||
-arch)
|
||||
eat=yes ;;
|
||||
-*|$object)
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"; shift ;;
|
||||
esac
|
||||
done
|
||||
obj_suffix=`echo "$object" | sed 's/^.*\././'`
|
||||
touch "$tmpdepfile"
|
||||
${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@"
|
||||
rm -f "$depfile"
|
||||
# makedepend may prepend the VPATH from the source file name to the object.
|
||||
# No need to regex-escape $object, excess matching of '.' is harmless.
|
||||
sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile"
|
||||
# Some versions of the HPUX 10.20 sed can't process the last invocation
|
||||
# correctly. Breaking it into two sed invocations is a workaround.
|
||||
sed '1,2d' "$tmpdepfile" \
|
||||
| tr ' ' "$nl" \
|
||||
| sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \
|
||||
| sed -e 's/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile" "$tmpdepfile".bak
|
||||
;;
|
||||
|
||||
cpp)
|
||||
# Important note: in order to support this mode, a compiler *must*
|
||||
# always write the preprocessed file to stdout.
|
||||
"$@" || exit $?
|
||||
|
||||
# Remove the call to Libtool.
|
||||
if test "$libtool" = yes; then
|
||||
while test "X$1" != 'X--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
|
||||
# Remove '-o $object'.
|
||||
IFS=" "
|
||||
for arg
|
||||
do
|
||||
case $arg in
|
||||
-o)
|
||||
shift
|
||||
;;
|
||||
$object)
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"
|
||||
shift # fnord
|
||||
shift # $arg
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
"$@" -E \
|
||||
| sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
|
||||
-e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \
|
||||
| sed '$ s: \\$::' > "$tmpdepfile"
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
cat < "$tmpdepfile" >> "$depfile"
|
||||
sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
msvisualcpp)
|
||||
# Important note: in order to support this mode, a compiler *must*
|
||||
# always write the preprocessed file to stdout.
|
||||
"$@" || exit $?
|
||||
|
||||
# Remove the call to Libtool.
|
||||
if test "$libtool" = yes; then
|
||||
while test "X$1" != 'X--mode=compile'; do
|
||||
shift
|
||||
done
|
||||
shift
|
||||
fi
|
||||
|
||||
IFS=" "
|
||||
for arg
|
||||
do
|
||||
case "$arg" in
|
||||
-o)
|
||||
shift
|
||||
;;
|
||||
$object)
|
||||
shift
|
||||
;;
|
||||
"-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI")
|
||||
set fnord "$@"
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
*)
|
||||
set fnord "$@" "$arg"
|
||||
shift
|
||||
shift
|
||||
;;
|
||||
esac
|
||||
done
|
||||
"$@" -E 2>/dev/null |
|
||||
sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile"
|
||||
rm -f "$depfile"
|
||||
echo "$object : \\" > "$depfile"
|
||||
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile"
|
||||
echo "$tab" >> "$depfile"
|
||||
sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile"
|
||||
rm -f "$tmpdepfile"
|
||||
;;
|
||||
|
||||
msvcmsys)
|
||||
# This case exists only to let depend.m4 do its work. It works by
|
||||
# looking at the text of this script. This case will never be run,
|
||||
# since it is checked for above.
|
||||
exit 1
|
||||
;;
|
||||
|
||||
none)
|
||||
exec "$@"
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Unknown depmode $depmode" 1>&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
||||
|
||||
# Local Variables:
|
||||
# mode: shell-script
|
||||
# sh-indentation: 2
|
||||
# eval: (add-hook 'before-save-hook 'time-stamp)
|
||||
# time-stamp-start: "scriptversion="
|
||||
# time-stamp-format: "%:y-%02m-%02d.%02H"
|
||||
# time-stamp-time-zone: "UTC0"
|
||||
# time-stamp-end: "; # UTC"
|
||||
# End:
|
|
@ -0,0 +1,321 @@
|
|||
# -*- mode: makefile -*-
|
||||
#
|
||||
# gtk-doc.make - make rules for gtk-doc
|
||||
# Copyright (C) 2003 James Henstridge
|
||||
# 2004-2007 Damon Chaplin
|
||||
# 2007-2017 Stefan Sauer
|
||||
#
|
||||
# This program is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
####################################
|
||||
# Everything below here is generic #
|
||||
####################################
|
||||
|
||||
if GTK_DOC_USE_LIBTOOL
|
||||
GTKDOC_CC = $(LIBTOOL) --tag=CC --mode=compile $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
GTKDOC_LD = $(LIBTOOL) --tag=CC --mode=link $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
|
||||
GTKDOC_RUN = $(LIBTOOL) --mode=execute
|
||||
else
|
||||
GTKDOC_CC = $(CC) $(INCLUDES) $(GTKDOC_DEPS_CFLAGS) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
||||
GTKDOC_LD = $(CC) $(GTKDOC_DEPS_LIBS) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS)
|
||||
GTKDOC_RUN =
|
||||
endif
|
||||
|
||||
# We set GPATH here; this gives us semantics for GNU make
|
||||
# which are more like other make's VPATH, when it comes to
|
||||
# whether a source that is a target of one rule is then
|
||||
# searched for in VPATH/GPATH.
|
||||
#
|
||||
GPATH = $(srcdir)
|
||||
|
||||
TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
|
||||
|
||||
SETUP_FILES = \
|
||||
$(content_files) \
|
||||
$(expand_content_files) \
|
||||
$(DOC_MAIN_SGML_FILE) \
|
||||
$(DOC_MODULE)-sections.txt \
|
||||
$(DOC_MODULE)-overrides.txt
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(HTML_IMAGES) \
|
||||
$(SETUP_FILES)
|
||||
|
||||
DOC_STAMPS=setup-build.stamp scan-build.stamp sgml-build.stamp \
|
||||
html-build.stamp pdf-build.stamp \
|
||||
sgml.stamp html.stamp pdf.stamp
|
||||
|
||||
SCANOBJ_FILES = \
|
||||
$(DOC_MODULE).args \
|
||||
$(DOC_MODULE).hierarchy \
|
||||
$(DOC_MODULE).interfaces \
|
||||
$(DOC_MODULE).prerequisites \
|
||||
$(DOC_MODULE).signals
|
||||
|
||||
REPORT_FILES = \
|
||||
$(DOC_MODULE)-undocumented.txt \
|
||||
$(DOC_MODULE)-undeclared.txt \
|
||||
$(DOC_MODULE)-unused.txt
|
||||
|
||||
gtkdoc-check.test: Makefile
|
||||
$(AM_V_GEN)echo "#!/bin/sh -e" > $@; \
|
||||
echo "$(GTKDOC_CHECK_PATH) || exit 1" >> $@; \
|
||||
chmod +x $@
|
||||
|
||||
CLEANFILES = $(SCANOBJ_FILES) $(REPORT_FILES) $(DOC_STAMPS) gtkdoc-check.test
|
||||
|
||||
if GTK_DOC_BUILD_HTML
|
||||
HTML_BUILD_STAMP=html-build.stamp
|
||||
else
|
||||
HTML_BUILD_STAMP=
|
||||
endif
|
||||
if GTK_DOC_BUILD_PDF
|
||||
PDF_BUILD_STAMP=pdf-build.stamp
|
||||
else
|
||||
PDF_BUILD_STAMP=
|
||||
endif
|
||||
|
||||
all-gtk-doc: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
|
||||
.PHONY: all-gtk-doc
|
||||
|
||||
if ENABLE_GTK_DOC
|
||||
all-local: all-gtk-doc
|
||||
endif
|
||||
|
||||
docs: $(HTML_BUILD_STAMP) $(PDF_BUILD_STAMP)
|
||||
|
||||
$(REPORT_FILES): sgml-build.stamp
|
||||
|
||||
#### setup ####
|
||||
|
||||
GTK_DOC_V_SETUP=$(GTK_DOC_V_SETUP_@AM_V@)
|
||||
GTK_DOC_V_SETUP_=$(GTK_DOC_V_SETUP_@AM_DEFAULT_V@)
|
||||
GTK_DOC_V_SETUP_0=@echo " DOC Preparing build";
|
||||
|
||||
setup-build.stamp:
|
||||
-$(GTK_DOC_V_SETUP)if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
|
||||
files=`echo $(SETUP_FILES) $(DOC_MODULE).types`; \
|
||||
if test "x$$files" != "x" ; then \
|
||||
for file in $$files ; do \
|
||||
destdir=`dirname $(abs_builddir)/$$file`; \
|
||||
test -d "$$destdir" || mkdir -p "$$destdir"; \
|
||||
test -f $(abs_srcdir)/$$file && \
|
||||
cp -pf $(abs_srcdir)/$$file $(abs_builddir)/$$file || true; \
|
||||
done; \
|
||||
fi; \
|
||||
fi
|
||||
$(AM_V_at)touch setup-build.stamp
|
||||
|
||||
#### scan ####
|
||||
|
||||
GTK_DOC_V_SCAN=$(GTK_DOC_V_SCAN_@AM_V@)
|
||||
GTK_DOC_V_SCAN_=$(GTK_DOC_V_SCAN_@AM_DEFAULT_V@)
|
||||
GTK_DOC_V_SCAN_0=@echo " DOC Scanning header files";
|
||||
|
||||
GTK_DOC_V_INTROSPECT=$(GTK_DOC_V_INTROSPECT_@AM_V@)
|
||||
GTK_DOC_V_INTROSPECT_=$(GTK_DOC_V_INTROSPECT_@AM_DEFAULT_V@)
|
||||
GTK_DOC_V_INTROSPECT_0=@echo " DOC Introspecting gobjects";
|
||||
|
||||
scan-build.stamp: setup-build.stamp $(HFILE_GLOB) $(CFILE_GLOB)
|
||||
$(GTK_DOC_V_SCAN)_source_dir='' ; \
|
||||
for i in $(DOC_SOURCE_DIR) ; do \
|
||||
_source_dir="$${_source_dir} --source-dir=$$i" ; \
|
||||
done ; \
|
||||
gtkdoc-scan --module=$(DOC_MODULE) --ignore-headers="$(IGNORE_HFILES)" $${_source_dir} $(SCAN_OPTIONS) $(EXTRA_HFILES)
|
||||
$(GTK_DOC_V_INTROSPECT)if grep -l '^..*$$' $(DOC_MODULE).types > /dev/null 2>&1 ; then \
|
||||
scanobj_options=""; \
|
||||
gtkdoc-scangobj 2>&1 --help | grep >/dev/null "\-\-verbose"; \
|
||||
if test "$$?" = "0"; then \
|
||||
if test "x$(V)" = "x1"; then \
|
||||
scanobj_options="--verbose"; \
|
||||
fi; \
|
||||
fi; \
|
||||
CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" RUN="$(GTKDOC_RUN)" CFLAGS="$(GTKDOC_CFLAGS) $(CFLAGS)" LDFLAGS="$(GTKDOC_LIBS) $(LDFLAGS)" \
|
||||
gtkdoc-scangobj $(SCANGOBJ_OPTIONS) $$scanobj_options --module=$(DOC_MODULE); \
|
||||
else \
|
||||
for i in $(SCANOBJ_FILES) ; do \
|
||||
test -f $$i || touch $$i ; \
|
||||
done \
|
||||
fi
|
||||
$(AM_V_at)touch scan-build.stamp
|
||||
|
||||
$(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt: scan-build.stamp
|
||||
@true
|
||||
|
||||
#### xml ####
|
||||
|
||||
GTK_DOC_V_XML=$(GTK_DOC_V_XML_@AM_V@)
|
||||
GTK_DOC_V_XML_=$(GTK_DOC_V_XML_@AM_DEFAULT_V@)
|
||||
GTK_DOC_V_XML_0=@echo " DOC Building XML";
|
||||
|
||||
sgml-build.stamp: setup-build.stamp $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(HFILE_GLOB) $(CFILE_GLOB) $(DOC_MODULE)-sections.txt $(DOC_MODULE)-overrides.txt $(expand_content_files) xml/gtkdocentities.ent
|
||||
$(GTK_DOC_V_XML)_source_dir='' ; \
|
||||
for i in $(DOC_SOURCE_DIR) ; do \
|
||||
_source_dir="$${_source_dir} --source-dir=$$i" ; \
|
||||
done ; \
|
||||
gtkdoc-mkdb --module=$(DOC_MODULE) --output-format=xml --expand-content-files="$(expand_content_files)" --main-sgml-file=$(DOC_MAIN_SGML_FILE) $${_source_dir} $(MKDB_OPTIONS)
|
||||
$(AM_V_at)touch sgml-build.stamp
|
||||
|
||||
sgml.stamp: sgml-build.stamp
|
||||
@true
|
||||
|
||||
$(DOC_MAIN_SGML_FILE): sgml-build.stamp
|
||||
@true
|
||||
|
||||
xml/gtkdocentities.ent: Makefile
|
||||
$(GTK_DOC_V_XML)$(MKDIR_P) $(@D) && ( \
|
||||
echo "<!ENTITY package \"$(PACKAGE)\">"; \
|
||||
echo "<!ENTITY package_bugreport \"$(PACKAGE_BUGREPORT)\">"; \
|
||||
echo "<!ENTITY package_name \"$(PACKAGE_NAME)\">"; \
|
||||
echo "<!ENTITY package_string \"$(PACKAGE_STRING)\">"; \
|
||||
echo "<!ENTITY package_tarname \"$(PACKAGE_TARNAME)\">"; \
|
||||
echo "<!ENTITY package_url \"$(PACKAGE_URL)\">"; \
|
||||
echo "<!ENTITY package_version \"$(PACKAGE_VERSION)\">"; \
|
||||
) > $@
|
||||
|
||||
#### html ####
|
||||
|
||||
GTK_DOC_V_HTML=$(GTK_DOC_V_HTML_@AM_V@)
|
||||
GTK_DOC_V_HTML_=$(GTK_DOC_V_HTML_@AM_DEFAULT_V@)
|
||||
GTK_DOC_V_HTML_0=@echo " DOC Building HTML";
|
||||
|
||||
GTK_DOC_V_XREF=$(GTK_DOC_V_XREF_@AM_V@)
|
||||
GTK_DOC_V_XREF_=$(GTK_DOC_V_XREF_@AM_DEFAULT_V@)
|
||||
GTK_DOC_V_XREF_0=@echo " DOC Fixing cross-references";
|
||||
|
||||
html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
|
||||
$(GTK_DOC_V_HTML)rm -rf html && mkdir html && \
|
||||
mkhtml_options=""; \
|
||||
gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-verbose"; \
|
||||
if test "$$?" = "0"; then \
|
||||
if test "x$(V)" = "x1"; then \
|
||||
mkhtml_options="$$mkhtml_options --verbose"; \
|
||||
fi; \
|
||||
fi; \
|
||||
gtkdoc-mkhtml 2>&1 --help | grep >/dev/null "\-\-path"; \
|
||||
if test "$$?" = "0"; then \
|
||||
mkhtml_options="$$mkhtml_options --path=\"$(abs_srcdir)\""; \
|
||||
fi; \
|
||||
cd html && gtkdoc-mkhtml $$mkhtml_options $(MKHTML_OPTIONS) $(DOC_MODULE) ../$(DOC_MAIN_SGML_FILE)
|
||||
-@test "x$(HTML_IMAGES)" = "x" || \
|
||||
for file in $(HTML_IMAGES) ; do \
|
||||
test -f $(abs_srcdir)/$$file && cp $(abs_srcdir)/$$file $(abs_builddir)/html; \
|
||||
test -f $(abs_builddir)/$$file && cp $(abs_builddir)/$$file $(abs_builddir)/html; \
|
||||
test -f $$file && cp $$file $(abs_builddir)/html; \
|
||||
done;
|
||||
$(GTK_DOC_V_XREF)gtkdoc-fixxref --module=$(DOC_MODULE) --module-dir=html --html-dir=$(HTML_DIR) $(FIXXREF_OPTIONS)
|
||||
$(AM_V_at)touch html-build.stamp
|
||||
|
||||
#### pdf ####
|
||||
|
||||
GTK_DOC_V_PDF=$(GTK_DOC_V_PDF_@AM_V@)
|
||||
GTK_DOC_V_PDF_=$(GTK_DOC_V_PDF_@AM_DEFAULT_V@)
|
||||
GTK_DOC_V_PDF_0=@echo " DOC Building PDF";
|
||||
|
||||
pdf-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files) $(expand_content_files)
|
||||
$(GTK_DOC_V_PDF)rm -f $(DOC_MODULE).pdf && \
|
||||
mkpdf_options=""; \
|
||||
gtkdoc-mkpdf 2>&1 --help | grep >/dev/null "\-\-verbose"; \
|
||||
if test "$$?" = "0"; then \
|
||||
if test "x$(V)" = "x1"; then \
|
||||
mkpdf_options="$$mkpdf_options --verbose"; \
|
||||
fi; \
|
||||
fi; \
|
||||
if test "x$(HTML_IMAGES)" != "x"; then \
|
||||
for img in $(HTML_IMAGES); do \
|
||||
part=`dirname $$img`; \
|
||||
echo $$mkpdf_options | grep >/dev/null "\-\-imgdir=$$part "; \
|
||||
if test $$? != 0; then \
|
||||
mkpdf_options="$$mkpdf_options --imgdir=$$part"; \
|
||||
fi; \
|
||||
done; \
|
||||
fi; \
|
||||
gtkdoc-mkpdf --path="$(abs_srcdir)" $$mkpdf_options $(DOC_MODULE) $(DOC_MAIN_SGML_FILE) $(MKPDF_OPTIONS)
|
||||
$(AM_V_at)touch pdf-build.stamp
|
||||
|
||||
##############
|
||||
|
||||
clean-local:
|
||||
@rm -f *~ *.bak
|
||||
@rm -rf .libs
|
||||
@if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-types" ; then \
|
||||
rm -f $(DOC_MODULE).types; \
|
||||
fi
|
||||
@if echo $(SCAN_OPTIONS) | grep -q "\-\-rebuild-sections" ; then \
|
||||
rm -f $(DOC_MODULE)-sections.txt; \
|
||||
fi
|
||||
|
||||
distclean-local:
|
||||
@rm -rf xml html $(REPORT_FILES) $(DOC_MODULE).pdf \
|
||||
$(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
|
||||
@if test "$(abs_srcdir)" != "$(abs_builddir)" ; then \
|
||||
rm -f $(SETUP_FILES) $(DOC_MODULE).types; \
|
||||
fi
|
||||
|
||||
maintainer-clean-local:
|
||||
@rm -rf xml html
|
||||
|
||||
install-data-local:
|
||||
@installfiles=`echo $(builddir)/html/*`; \
|
||||
if test "$$installfiles" = '$(builddir)/html/*'; \
|
||||
then echo 1>&2 'Nothing to install' ; \
|
||||
else \
|
||||
if test -n "$(DOC_MODULE_VERSION)"; then \
|
||||
installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \
|
||||
else \
|
||||
installdir="$(DESTDIR)$(TARGET_DIR)"; \
|
||||
fi; \
|
||||
$(mkinstalldirs) $${installdir} ; \
|
||||
for i in $$installfiles; do \
|
||||
echo ' $(INSTALL_DATA) '$$i ; \
|
||||
$(INSTALL_DATA) $$i $${installdir}; \
|
||||
done; \
|
||||
if test -n "$(DOC_MODULE_VERSION)"; then \
|
||||
mv -f $${installdir}/$(DOC_MODULE).devhelp2 \
|
||||
$${installdir}/$(DOC_MODULE)-$(DOC_MODULE_VERSION).devhelp2; \
|
||||
fi; \
|
||||
$(GTKDOC_REBASE) --relative --dest-dir=$(DESTDIR) --html-dir=$${installdir}; \
|
||||
fi
|
||||
|
||||
uninstall-local:
|
||||
@if test -n "$(DOC_MODULE_VERSION)"; then \
|
||||
installdir="$(DESTDIR)$(TARGET_DIR)-$(DOC_MODULE_VERSION)"; \
|
||||
else \
|
||||
installdir="$(DESTDIR)$(TARGET_DIR)"; \
|
||||
fi; \
|
||||
rm -rf $${installdir}
|
||||
|
||||
#
|
||||
# Require gtk-doc when making dist
|
||||
#
|
||||
if HAVE_GTK_DOC
|
||||
dist-check-gtkdoc: docs
|
||||
else
|
||||
dist-check-gtkdoc:
|
||||
@echo "*** gtk-doc is needed to run 'make dist'. ***"
|
||||
@echo "*** gtk-doc was not found when 'configure' ran. ***"
|
||||
@echo "*** please install gtk-doc and rerun 'configure'. ***"
|
||||
@false
|
||||
endif
|
||||
|
||||
dist-hook: dist-check-gtkdoc all-gtk-doc dist-hook-local
|
||||
@mkdir $(distdir)/html
|
||||
@cp ./html/* $(distdir)/html
|
||||
@-cp ./$(DOC_MODULE).pdf $(distdir)/
|
||||
@-cp ./$(DOC_MODULE).types $(distdir)/
|
||||
@-cp ./$(DOC_MODULE)-sections.txt $(distdir)/
|
||||
@cd $(distdir) && rm -f $(DISTCLEANFILES)
|
||||
@$(GTKDOC_REBASE) --online --relative --html-dir=$(distdir)/html
|
||||
|
||||
.PHONY : dist-hook-local docs
|
|
@ -0,0 +1,7 @@
|
|||
<!ENTITY package @PACKAGE@>
|
||||
<!ENTITY package_bugreport @PACKAGE_BUGREPORT@>
|
||||
<!ENTITY package_name @PACKAGE_NAME@>
|
||||
<!ENTITY package_string @PACKAGE_STRING@>
|
||||
<!ENTITY package_tarname @PACKAGE_TARNAME@>
|
||||
<!ENTITY package_url @PACKAGE_URL@>
|
||||
<!ENTITY package_version @PACKAGE_VERSION@>
|
|
@ -0,0 +1,284 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>NMABarCode: libnma Reference Manual</title>
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
||||
<link rel="home" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="up" href="api-reference.html" title="libnma API reference">
|
||||
<link rel="prev" href="NMACertChooser.html" title="NMACertChooser">
|
||||
<link rel="next" href="object-tree.html" title="Object Hierarchy">
|
||||
<meta name="generator" content="GTK-Doc V1.29.1 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
||||
<td width="100%" align="left" class="shortcuts">
|
||||
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
||||
<a href="#NMABarCode.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
||||
<a href="#NMABarCode.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_properties"> <span class="dim">|</span>
|
||||
<a href="#NMABarCode.properties" class="shortcut">Properties</a></span>
|
||||
</td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
||||
<td><a accesskey="u" href="api-reference.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="p" href="NMACertChooser.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="n" href="object-tree.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
<div class="refentry">
|
||||
<a name="NMABarCode"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle"><a name="NMABarCode.top_of_page"></a>NMABarCode</span></h2>
|
||||
<p>NMABarCode</p>
|
||||
</td>
|
||||
<td class="gallery_image" valign="top" align="right"></td>
|
||||
</tr></table></div>
|
||||
<div class="refsect1">
|
||||
<a name="NMABarCode.functions"></a><h2>Functions</h2>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="functions_return">
|
||||
<col class="functions_name">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<a class="link" href="NMABarCode.html" title="NMABarCode"><span class="returnvalue">NMABarCode</span></a> *
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMABarCode.html#nma-bar-code-new" title="nma_bar_code_new ()">nma_bar_code_new</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMABarCode.html#nma-bar-code-set-text" title="nma_bar_code_set_text ()">nma_bar_code_set_text</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">int</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMABarCode.html#nma-bar-code-get-size" title="nma_bar_code_get_size ()">nma_bar_code_get_size</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMABarCode.html#nma-bar-code-draw" title="nma_bar_code_draw ()">nma_bar_code_draw</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMABarCode.properties"></a><h2>Properties</h2>
|
||||
<div class="informaltable"><table class="informaltable" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="properties_type">
|
||||
<col width="300px" class="properties_name">
|
||||
<col width="200px" class="properties_flags">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="property_type"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
|
||||
<td class="property_name"><a class="link" href="NMABarCode.html#NMABarCode--size" title="The “size” property">size</a></td>
|
||||
<td class="property_flags">Read</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="property_type">
|
||||
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
|
||||
<td class="property_name"><a class="link" href="NMABarCode.html#NMABarCode--text" title="The “text” property">text</a></td>
|
||||
<td class="property_flags">Write</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMABarCode.other"></a><h2>Types and Values</h2>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="name">
|
||||
<col class="description">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="define_keyword">#define</td>
|
||||
<td class="function_name"><a class="link" href="NMABarCode.html#NMA-BAR-CODE-TEXT:CAPS" title="NMA_BAR_CODE_TEXT">NMA_BAR_CODE_TEXT</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="define_keyword">#define</td>
|
||||
<td class="function_name"><a class="link" href="NMABarCode.html#NMA-BAR-CODE-SIZE:CAPS" title="NMA_BAR_CODE_SIZE">NMA_BAR_CODE_SIZE</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMABarCode.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
||||
<pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
|
||||
<span class="lineart">╰──</span> NMABarCode
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMABarCode.description"></a><h2>Description</h2>
|
||||
<p>A Bar Code object provides the means of drawing a QR code onto a cairo
|
||||
context. Useful for rendering Wi-Fi network credential in a form that
|
||||
can be optically scanned with a phone camera.</p>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMABarCode.functions_details"></a><h2>Functions</h2>
|
||||
<div class="refsect2">
|
||||
<a name="nma-bar-code-new"></a><h3>nma_bar_code_new ()</h3>
|
||||
<pre class="programlisting"><a class="link" href="NMABarCode.html" title="NMABarCode"><span class="returnvalue">NMABarCode</span></a> *
|
||||
nma_bar_code_new (<em class="parameter"><code>const <span class="type">char</span> *text</code></em>);</pre>
|
||||
<div class="refsect3">
|
||||
<a name="nma-bar-code-new.parameters"></a><h4>Parameters</h4>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="parameters_name">
|
||||
<col class="parameters_description">
|
||||
<col width="200px" class="parameters_annotations">
|
||||
</colgroup>
|
||||
<tbody><tr>
|
||||
<td class="parameter_name"><p>text</p></td>
|
||||
<td class="parameter_description"><p>set the bar code text</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr></tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect3">
|
||||
<a name="nma-bar-code-new.returns"></a><h4>Returns</h4>
|
||||
<p>the bar code instance. </p>
|
||||
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
||||
</div>
|
||||
<p class="since">Since: 1.8.22</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-bar-code-set-text"></a><h3>nma_bar_code_set_text ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_bar_code_set_text (<em class="parameter"><code><a class="link" href="NMABarCode.html" title="NMABarCode"><span class="type">NMABarCode</span></a> *self</code></em>,
|
||||
<em class="parameter"><code>const <span class="type">char</span> *text</code></em>);</pre>
|
||||
<p>Regenerates the QR code for a different text.</p>
|
||||
<div class="refsect3">
|
||||
<a name="nma-bar-code-set-text.parameters"></a><h4>Parameters</h4>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="parameters_name">
|
||||
<col class="parameters_description">
|
||||
<col width="200px" class="parameters_annotations">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>self</p></td>
|
||||
<td class="parameter_description"><p>bar code instance</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>text</p></td>
|
||||
<td class="parameter_description"><p>new bar code text</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<p class="since">Since: 1.8.22</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-bar-code-get-size"></a><h3>nma_bar_code_get_size ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">int</span>
|
||||
nma_bar_code_get_size (<em class="parameter"><code><a class="link" href="NMABarCode.html" title="NMABarCode"><span class="type">NMABarCode</span></a> *self</code></em>);</pre>
|
||||
<div class="refsect3">
|
||||
<a name="nma-bar-code-get-size.parameters"></a><h4>Parameters</h4>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="parameters_name">
|
||||
<col class="parameters_description">
|
||||
<col width="200px" class="parameters_annotations">
|
||||
</colgroup>
|
||||
<tbody><tr>
|
||||
<td class="parameter_name"><p>self</p></td>
|
||||
<td class="parameter_description"><p>bar code instance</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr></tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect3">
|
||||
<a name="nma-bar-code-get-size.returns"></a><h4>Returns</h4>
|
||||
<p> the side of a QR code square.</p>
|
||||
</div>
|
||||
<p class="since">Since: 1.8.22</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-bar-code-draw"></a><h3>nma_bar_code_draw ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_bar_code_draw (<em class="parameter"><code><a class="link" href="NMABarCode.html" title="NMABarCode"><span class="type">NMABarCode</span></a> *self</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> *cr</code></em>);</pre>
|
||||
<p>Draws the QR code onto the given context.</p>
|
||||
<div class="refsect3">
|
||||
<a name="nma-bar-code-draw.parameters"></a><h4>Parameters</h4>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="parameters_name">
|
||||
<col class="parameters_description">
|
||||
<col width="200px" class="parameters_annotations">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>self</p></td>
|
||||
<td class="parameter_description"><p>bar code instance</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>cr</p></td>
|
||||
<td class="parameter_description"><p>cairo context</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<p class="since">Since: 1.8.22</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMABarCode.other_details"></a><h2>Types and Values</h2>
|
||||
<div class="refsect2">
|
||||
<a name="NMA-BAR-CODE-TEXT:CAPS"></a><h3>NMA_BAR_CODE_TEXT</h3>
|
||||
<pre class="programlisting">#define NMA_BAR_CODE_TEXT "text"
|
||||
</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="NMA-BAR-CODE-SIZE:CAPS"></a><h3>NMA_BAR_CODE_SIZE</h3>
|
||||
<pre class="programlisting">#define NMA_BAR_CODE_SIZE "size"
|
||||
</pre>
|
||||
</div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMABarCode.property-details"></a><h2>Property Details</h2>
|
||||
<div class="refsect2">
|
||||
<a name="NMABarCode--size"></a><h3>The <code class="literal">“size”</code> property</h3>
|
||||
<pre class="programlisting"> “size” <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
|
||||
<p>Flags: Read</p>
|
||||
<p>Default value: 0</p>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="NMABarCode--text"></a><h3>The <code class="literal">“text”</code> property</h3>
|
||||
<pre class="programlisting"> “text” <a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
|
||||
<p>Flags: Write</p>
|
||||
<p>Default value: ""</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<hr>Generated by GTK-Doc V1.29.1</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,222 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>NMAMobileWizard: libnma Reference Manual</title>
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
||||
<link rel="home" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="up" href="api-reference.html" title="libnma API reference">
|
||||
<link rel="prev" href="libnma-nma-ui-utils.html" title="nma-ui-utils">
|
||||
<link rel="next" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">
|
||||
<meta name="generator" content="GTK-Doc V1.29.1 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
||||
<td width="100%" align="left" class="shortcuts">
|
||||
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
||||
<a href="#NMAMobileWizard.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
||||
<a href="#NMAMobileWizard.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
|
||||
</td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
||||
<td><a accesskey="u" href="api-reference.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="p" href="libnma-nma-ui-utils.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="n" href="NMAMobileProvidersDatabase.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
<div class="refentry">
|
||||
<a name="NMAMobileWizard"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle"><a name="NMAMobileWizard.top_of_page"></a>NMAMobileWizard</span></h2>
|
||||
<p>NMAMobileWizard</p>
|
||||
</td>
|
||||
<td class="gallery_image" valign="top" align="right"></td>
|
||||
</tr></table></div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAMobileWizard.functions"></a><h2>Functions</h2>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="functions_return">
|
||||
<col class="functions_name">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<span class="c_punctuation">(</span><a class="link" href="NMAMobileWizard.html#NMAMobileWizardCallback" title="NMAMobileWizardCallback ()">*NMAMobileWizardCallback</a><span class="c_punctuation">)</span> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<a class="link" href="NMAMobileWizard.html" title="NMAMobileWizard"><span class="returnvalue">NMAMobileWizard</span></a> *
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAMobileWizard.html#nma-mobile-wizard-new" title="nma_mobile_wizard_new ()">nma_mobile_wizard_new</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAMobileWizard.html#nma-mobile-wizard-present" title="nma_mobile_wizard_present ()">nma_mobile_wizard_present</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAMobileWizard.html#nma-mobile-wizard-destroy" title="nma_mobile_wizard_destroy ()">nma_mobile_wizard_destroy</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAMobileWizard.other"></a><h2>Types and Values</h2>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="name">
|
||||
<col class="description">
|
||||
</colgroup>
|
||||
<tbody><tr>
|
||||
<td class="datatype_keyword"> </td>
|
||||
<td class="function_name"><a class="link" href="NMAMobileWizard.html#NMAMobileWizardAccessMethod" title="NMAMobileWizardAccessMethod">NMAMobileWizardAccessMethod</a></td>
|
||||
</tr></tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAMobileWizard.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
||||
<pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct">GtkWidget</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkContainer.html#GtkContainer-struct">GtkContainer</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkBin.html#GtkBin-struct">GtkBin</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkWindow.html#GtkWindow-struct">GtkWindow</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkAssistant.html#GtkAssistant-struct">GtkAssistant</a>
|
||||
<span class="lineart">╰──</span> NMAMobileWizard
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAMobileWizard.description"></a><h2>Description</h2>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAMobileWizard.functions_details"></a><h2>Functions</h2>
|
||||
<div class="refsect2">
|
||||
<a name="NMAMobileWizardCallback"></a><h3>NMAMobileWizardCallback ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
<span class="c_punctuation">(</span>*NMAMobileWizardCallback<span class="c_punctuation">)</span> (<em class="parameter"><code><a class="link" href="NMAMobileWizard.html" title="NMAMobileWizard"><span class="type">NMAMobileWizard</span></a> *self</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> canceled</code></em>,
|
||||
<em class="parameter"><code><a class="link" href="NMAMobileWizard.html#NMAMobileWizardAccessMethod" title="NMAMobileWizardAccessMethod"><span class="type">NMAMobileWizardAccessMethod</span></a> *method</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-mobile-wizard-new"></a><h3>nma_mobile_wizard_new ()</h3>
|
||||
<pre class="programlisting"><a class="link" href="NMAMobileWizard.html" title="NMAMobileWizard"><span class="returnvalue">NMAMobileWizard</span></a> *
|
||||
nma_mobile_wizard_new (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk4/GtkWindow.html#GtkWindow-struct"><span class="type">GtkWindow</span></a> *parent</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk4/GtkWindowGroup.html#GtkWindowGroup-struct"><span class="type">GtkWindowGroup</span></a> *window_group</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/libnm-nm-dbus-interface.html#NMDeviceModemCapabilities"><span class="type">NMDeviceModemCapabilities</span></a> modem_caps</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> will_connect_after</code></em>,
|
||||
<em class="parameter"><code><a class="link" href="NMAMobileWizard.html#NMAMobileWizardCallback" title="NMAMobileWizardCallback ()"><span class="type">NMAMobileWizardCallback</span></a> cb</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
|
||||
<p><span class="annotation">[<acronym title="Exposed in C code, not necessarily available in other languages."><span class="acronym">skip</span></acronym>]</span></p>
|
||||
<div class="refsect3">
|
||||
<a name="nma-mobile-wizard-new.parameters"></a><h4>Parameters</h4>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="parameters_name">
|
||||
<col class="parameters_description">
|
||||
<col width="200px" class="parameters_annotations">
|
||||
</colgroup>
|
||||
<tbody><tr>
|
||||
<td class="parameter_name"><p>cb</p></td>
|
||||
<td class="parameter_description"><p>. </p></td>
|
||||
<td class="parameter_annotations"><span class="annotation">[<acronym title="The callback is valid until first called."><span class="acronym">scope async</span></acronym>]</span></td>
|
||||
</tr></tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect3">
|
||||
<a name="nma-mobile-wizard-new.returns"></a><h4>Returns</h4>
|
||||
<p> the newly created <a class="link" href="NMAMobileWizard.html" title="NMAMobileWizard"><span class="type">NMAMobileWizard</span></a></p>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-mobile-wizard-present"></a><h3>nma_mobile_wizard_present ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_mobile_wizard_present (<em class="parameter"><code><a class="link" href="NMAMobileWizard.html" title="NMAMobileWizard"><span class="type">NMAMobileWizard</span></a> *wizard</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-mobile-wizard-destroy"></a><h3>nma_mobile_wizard_destroy ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_mobile_wizard_destroy (<em class="parameter"><code><a class="link" href="NMAMobileWizard.html" title="NMAMobileWizard"><span class="type">NMAMobileWizard</span></a> *self</code></em>);</pre>
|
||||
</div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAMobileWizard.other_details"></a><h2>Types and Values</h2>
|
||||
<div class="refsect2">
|
||||
<a name="NMAMobileWizardAccessMethod"></a><h3>NMAMobileWizardAccessMethod</h3>
|
||||
<pre class="programlisting">typedef struct {
|
||||
char *provider_name;
|
||||
char *plan_name;
|
||||
NMDeviceModemCapabilities devtype;
|
||||
char *username;
|
||||
char *password;
|
||||
char *gsm_apn;
|
||||
} NMAMobileWizardAccessMethod;
|
||||
</pre>
|
||||
<p>Network access method details.</p>
|
||||
<div class="refsect3">
|
||||
<a name="NMAMobileWizardAccessMethod.members"></a><h4>Members</h4>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="300px" class="struct_members_name">
|
||||
<col class="struct_members_description">
|
||||
<col width="200px" class="struct_members_annotations">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="struct_member_name"><p><span class="type">char</span> *<em class="structfield"><code><a name="NMAMobileWizardAccessMethod.provider-name"></a>provider_name</code></em>;</p></td>
|
||||
<td class="struct_member_description"><p>The mobile network provider name</p></td>
|
||||
<td class="struct_member_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="struct_member_name"><p><span class="type">char</span> *<em class="structfield"><code><a name="NMAMobileWizardAccessMethod.plan-name"></a>plan_name</code></em>;</p></td>
|
||||
<td class="struct_member_description"><p>The provided network access billing plan</p></td>
|
||||
<td class="struct_member_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="struct_member_name"><p><a href="/usr/share/gtk-doc/html/libnm/libnm-nm-dbus-interface.html#NMDeviceModemCapabilities"><span class="type">NMDeviceModemCapabilities</span></a> <em class="structfield"><code><a name="NMAMobileWizardAccessMethod.devtype"></a>devtype</code></em>;</p></td>
|
||||
<td class="struct_member_description"><p>Required NetworkManager device capabilities</p></td>
|
||||
<td class="struct_member_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="struct_member_name"><p><span class="type">char</span> *<em class="structfield"><code><a name="NMAMobileWizardAccessMethod.username"></a>username</code></em>;</p></td>
|
||||
<td class="struct_member_description"><p>User login</p></td>
|
||||
<td class="struct_member_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="struct_member_name"><p><span class="type">char</span> *<em class="structfield"><code><a name="NMAMobileWizardAccessMethod.password"></a>password</code></em>;</p></td>
|
||||
<td class="struct_member_description"><p>User secret</p></td>
|
||||
<td class="struct_member_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="struct_member_name"><p><span class="type">char</span> *<em class="structfield"><code><a name="NMAMobileWizardAccessMethod.gsm-apn"></a>gsm_apn</code></em>;</p></td>
|
||||
<td class="struct_member_description"><p>The GSM Access Point Name</p></td>
|
||||
<td class="struct_member_annotations"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<hr>Generated by GTK-Doc V1.29.1</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,366 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>NMAVpnPasswordDialog: libnma Reference Manual</title>
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
||||
<link rel="home" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="up" href="api-reference.html" title="libnma API reference">
|
||||
<link rel="prev" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">
|
||||
<link rel="next" href="NMAWifiDialog.html" title="NMAWifiDialog">
|
||||
<meta name="generator" content="GTK-Doc V1.29.1 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
||||
<td width="100%" align="left" class="shortcuts">
|
||||
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
||||
<a href="#NMAVpnPasswordDialog.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
||||
<a href="#NMAVpnPasswordDialog.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces"> <span class="dim">|</span>
|
||||
<a href="#NMAVpnPasswordDialog.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span>
|
||||
</td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
||||
<td><a accesskey="u" href="api-reference.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="p" href="NMAMobileProvidersDatabase.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="n" href="NMAWifiDialog.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
<div class="refentry">
|
||||
<a name="NMAVpnPasswordDialog"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle"><a name="NMAVpnPasswordDialog.top_of_page"></a>NMAVpnPasswordDialog</span></h2>
|
||||
<p>NMAVpnPasswordDialog</p>
|
||||
</td>
|
||||
<td class="gallery_image" valign="top" align="right"></td>
|
||||
</tr></table></div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAVpnPasswordDialog.functions"></a><h2>Functions</h2>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="functions_return">
|
||||
<col class="functions_name">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-new" title="nma_vpn_password_dialog_new ()">nma_vpn_password_dialog_new</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-run-and-block" title="nma_vpn_password_dialog_run_and_block ()">nma_vpn_password_dialog_run_and_block</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-show-password" title="nma_vpn_password_dialog_set_show_password ()">nma_vpn_password_dialog_set_show_password</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-focus-password" title="nma_vpn_password_dialog_focus_password ()">nma_vpn_password_dialog_focus_password</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password" title="nma_vpn_password_dialog_set_password ()">nma_vpn_password_dialog_set_password</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-label" title="nma_vpn_password_dialog_set_password_label ()">nma_vpn_password_dialog_set_password_label</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-show-password-secondary" title="nma_vpn_password_dialog_set_show_password_secondary ()">nma_vpn_password_dialog_set_show_password_secondary</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-focus-password-secondary" title="nma_vpn_password_dialog_focus_password_secondary ()">nma_vpn_password_dialog_focus_password_secondary</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-secondary" title="nma_vpn_password_dialog_set_password_secondary ()">nma_vpn_password_dialog_set_password_secondary</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-secondary-label" title="nma_vpn_password_dialog_set_password_secondary_label ()">nma_vpn_password_dialog_set_password_secondary_label</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-show-password-ternary" title="nma_vpn_password_dialog_set_show_password_ternary ()">nma_vpn_password_dialog_set_show_password_ternary</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-focus-password-ternary" title="nma_vpn_password_dialog_focus_password_ternary ()">nma_vpn_password_dialog_focus_password_ternary</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-ternary" title="nma_vpn_password_dialog_set_password_ternary ()">nma_vpn_password_dialog_set_password_ternary</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-ternary-label" title="nma_vpn_password_dialog_set_password_ternary_label ()">nma_vpn_password_dialog_set_password_ternary_label</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">const <span class="returnvalue">char</span> *
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-get-password" title="nma_vpn_password_dialog_get_password ()">nma_vpn_password_dialog_get_password</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">const <span class="returnvalue">char</span> *
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-get-password-secondary" title="nma_vpn_password_dialog_get_password_secondary ()">nma_vpn_password_dialog_get_password_secondary</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">const <span class="returnvalue">char</span> *
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-get-password-ternary" title="nma_vpn_password_dialog_get_password_ternary ()">nma_vpn_password_dialog_get_password_ternary</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAVpnPasswordDialog.other"></a><h2>Types and Values</h2>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="name">
|
||||
<col class="description">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="typedef_keyword">typedef</td>
|
||||
<td class="function_name"><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="typedef_keyword">typedef</td>
|
||||
<td class="function_name"><a class="link" href="NMAVpnPasswordDialog.html#NMAVpnPasswordDialogClass" title="NMAVpnPasswordDialogClass">NMAVpnPasswordDialogClass</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAVpnPasswordDialog.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
||||
<pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct">GtkWidget</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkContainer.html#GtkContainer-struct">GtkContainer</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkBin.html#GtkBin-struct">GtkBin</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkWindow.html#GtkWindow-struct">GtkWindow</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkDialog.html#GtkDialog-struct">GtkDialog</a>
|
||||
<span class="lineart">╰──</span> NMAVpnPasswordDialog
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAVpnPasswordDialog.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
||||
<p>
|
||||
NMAVpnPasswordDialog implements
|
||||
AtkImplementorIface and <a href="/usr/share/gtk-doc/html/gtk4/GtkBuildable.html#GtkBuildable-struct">GtkBuildable</a>.</p>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAVpnPasswordDialog.description"></a><h2>Description</h2>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAVpnPasswordDialog.functions_details"></a><h2>Functions</h2>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-new"></a><h3>nma_vpn_password_dialog_new ()</h3>
|
||||
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
nma_vpn_password_dialog_new (<em class="parameter"><code>const <span class="type">char</span> *title</code></em>,
|
||||
<em class="parameter"><code>const <span class="type">char</span> *message</code></em>,
|
||||
<em class="parameter"><code>const <span class="type">char</span> *password</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-run-and-block"></a><h3>nma_vpn_password_dialog_run_and_block ()</h3>
|
||||
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
||||
nma_vpn_password_dialog_run_and_block (<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-set-show-password"></a><h3>nma_vpn_password_dialog_set_show_password ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_vpn_password_dialog_set_show_password
|
||||
(<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-focus-password"></a><h3>nma_vpn_password_dialog_focus_password ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_vpn_password_dialog_focus_password
|
||||
(<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-set-password"></a><h3>nma_vpn_password_dialog_set_password ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_vpn_password_dialog_set_password (<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>,
|
||||
<em class="parameter"><code>const <span class="type">char</span> *password</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-set-password-label"></a><h3>nma_vpn_password_dialog_set_password_label ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_vpn_password_dialog_set_password_label
|
||||
(<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>,
|
||||
<em class="parameter"><code>const <span class="type">char</span> *label</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-set-show-password-secondary"></a><h3>nma_vpn_password_dialog_set_show_password_secondary ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_vpn_password_dialog_set_show_password_secondary
|
||||
(<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-focus-password-secondary"></a><h3>nma_vpn_password_dialog_focus_password_secondary ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_vpn_password_dialog_focus_password_secondary
|
||||
(<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-set-password-secondary"></a><h3>nma_vpn_password_dialog_set_password_secondary ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_vpn_password_dialog_set_password_secondary
|
||||
(<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>,
|
||||
<em class="parameter"><code>const <span class="type">char</span> *password_secondary</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-set-password-secondary-label"></a><h3>nma_vpn_password_dialog_set_password_secondary_label ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_vpn_password_dialog_set_password_secondary_label
|
||||
(<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>,
|
||||
<em class="parameter"><code>const <span class="type">char</span> *label</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-set-show-password-ternary"></a><h3>nma_vpn_password_dialog_set_show_password_ternary ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_vpn_password_dialog_set_show_password_ternary
|
||||
(<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-focus-password-ternary"></a><h3>nma_vpn_password_dialog_focus_password_ternary ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_vpn_password_dialog_focus_password_ternary
|
||||
(<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-set-password-ternary"></a><h3>nma_vpn_password_dialog_set_password_ternary ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_vpn_password_dialog_set_password_ternary
|
||||
(<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>,
|
||||
<em class="parameter"><code>const <span class="type">char</span> *password_ternary</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-set-password-ternary-label"></a><h3>nma_vpn_password_dialog_set_password_ternary_label ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_vpn_password_dialog_set_password_ternary_label
|
||||
(<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>,
|
||||
<em class="parameter"><code>const <span class="type">char</span> *label</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-get-password"></a><h3>nma_vpn_password_dialog_get_password ()</h3>
|
||||
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
||||
nma_vpn_password_dialog_get_password (<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-get-password-secondary"></a><h3>nma_vpn_password_dialog_get_password_secondary ()</h3>
|
||||
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
||||
nma_vpn_password_dialog_get_password_secondary
|
||||
(<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-vpn-password-dialog-get-password-ternary"></a><h3>nma_vpn_password_dialog_get_password_ternary ()</h3>
|
||||
<pre class="programlisting">const <span class="returnvalue">char</span> *
|
||||
nma_vpn_password_dialog_get_password_ternary
|
||||
(<em class="parameter"><code><a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog"><span class="type">NMAVpnPasswordDialog</span></a> *dialog</code></em>);</pre>
|
||||
</div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAVpnPasswordDialog.other_details"></a><h2>Types and Values</h2>
|
||||
<div class="refsect2">
|
||||
<a name="NMAVpnPasswordDialog"></a><h3>NMAVpnPasswordDialog</h3>
|
||||
<pre class="programlisting">typedef struct NMAVpnPasswordDialog NMAVpnPasswordDialog;
|
||||
</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="NMAVpnPasswordDialogClass"></a><h3>NMAVpnPasswordDialogClass</h3>
|
||||
<pre class="programlisting">typedef struct NMAVpnPasswordDialogClass NMAVpnPasswordDialogClass;
|
||||
</pre>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<hr>Generated by GTK-Doc V1.29.1</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,356 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>NMAWifiDialog: libnma Reference Manual</title>
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
||||
<link rel="home" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="up" href="api-reference.html" title="libnma API reference">
|
||||
<link rel="prev" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">
|
||||
<link rel="next" href="NMACertChooser.html" title="NMACertChooser">
|
||||
<meta name="generator" content="GTK-Doc V1.29.1 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
||||
<td width="100%" align="left" class="shortcuts">
|
||||
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
||||
<a href="#NMAWifiDialog.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
||||
<a href="#NMAWifiDialog.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
|
||||
</td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
||||
<td><a accesskey="u" href="api-reference.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="p" href="NMAVpnPasswordDialog.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="n" href="NMACertChooser.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
<div class="refentry">
|
||||
<a name="NMAWifiDialog"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle"><a name="NMAWifiDialog.top_of_page"></a>NMAWifiDialog</span></h2>
|
||||
<p>NMAWifiDialog</p>
|
||||
</td>
|
||||
<td class="gallery_image" valign="top" align="right"></td>
|
||||
</tr></table></div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAWifiDialog.functions"></a><h2>Functions</h2>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="functions_return">
|
||||
<col class="functions_name">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-new" title="nma_wifi_dialog_new ()">nma_wifi_dialog_new</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-new-for-secrets" title="nma_wifi_dialog_new_for_secrets ()">nma_wifi_dialog_new_for_secrets</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-new-for-hidden" title="nma_wifi_dialog_new_for_hidden ()">nma_wifi_dialog_new_for_hidden</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-new-for-create" title="nma_wifi_dialog_new_for_create ()">nma_wifi_dialog_new_for_create</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">NMConnection</span> *
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-get-connection" title="nma_wifi_dialog_get_connection ()">nma_wifi_dialog_get_connection</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-nag-user" title="nma_wifi_dialog_nag_user ()">nma_wifi_dialog_nag_user</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-set-nag-ignored" title="nma_wifi_dialog_set_nag_ignored ()">nma_wifi_dialog_set_nag_ignored</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-get-nag-ignored" title="nma_wifi_dialog_get_nag_ignored ()">nma_wifi_dialog_get_nag_ignored</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-new-for-other" title="nma_wifi_dialog_new_for_other ()">nma_wifi_dialog_new_for_other</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAWifiDialog.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
||||
<pre class="screen"> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct">GtkWidget</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkContainer.html#GtkContainer-struct">GtkContainer</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkBin.html#GtkBin-struct">GtkBin</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkWindow.html#GtkWindow-struct">GtkWindow</a>
|
||||
<span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkDialog.html#GtkDialog-struct">GtkDialog</a>
|
||||
<span class="lineart">╰──</span> NMAWifiDialog
|
||||
</pre>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAWifiDialog.description"></a><h2>Description</h2>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAWifiDialog.functions_details"></a><h2>Functions</h2>
|
||||
<div class="refsect2">
|
||||
<a name="nma-wifi-dialog-new"></a><h3>nma_wifi_dialog_new ()</h3>
|
||||
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
nma_wifi_dialog_new (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/NMClient.html#NMClient-struct"><span class="type">NMClient</span></a> *client</code></em>,
|
||||
<em class="parameter"><code><span class="type">NMConnection</span> *connection</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/NMDevice.html#NMDevice-struct"><span class="type">NMDevice</span></a> *device</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/NMAccessPoint.html#NMAccessPoint-struct"><span class="type">NMAccessPoint</span></a> *ap</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> secrets_only</code></em>);</pre>
|
||||
<p>Creates a wifi connection dialog and populates it with settings from
|
||||
<em class="parameter"><code>connection</code></em>
|
||||
if given. If <em class="parameter"><code>device</code></em>
|
||||
is not given a device selection combo box
|
||||
will be included. If <em class="parameter"><code>connection</code></em>
|
||||
is not given a connection selection combo
|
||||
box will be included. If <em class="parameter"><code>secrets_only</code></em>
|
||||
is <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> a complete connection
|
||||
creator/editor dialog is returned, otherwise only wifi security secrets
|
||||
relevant to the security settings in <em class="parameter"><code>connection</code></em>
|
||||
are going to be shown and
|
||||
will be editable.</p>
|
||||
<div class="refsect3">
|
||||
<a name="nma-wifi-dialog-new.parameters"></a><h4>Parameters</h4>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="parameters_name">
|
||||
<col class="parameters_description">
|
||||
<col width="200px" class="parameters_annotations">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>client</p></td>
|
||||
<td class="parameter_description"><p>client to retrieve list of devices or connections from</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>connection</p></td>
|
||||
<td class="parameter_description"><p>connection to be shown/edited or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>device</p></td>
|
||||
<td class="parameter_description"><p>device to check connection compatibility against</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>ap</p></td>
|
||||
<td class="parameter_description"><p>AP to check connection compatibility against</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>secrets_only</p></td>
|
||||
<td class="parameter_description"><p>whether to only ask for secrets for given connection</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect3">
|
||||
<a name="nma-wifi-dialog-new.returns"></a><h4>Returns</h4>
|
||||
<p> the dialog widget or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> in case of error</p>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-wifi-dialog-new-for-secrets"></a><h3>nma_wifi_dialog_new_for_secrets ()</h3>
|
||||
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
nma_wifi_dialog_new_for_secrets (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/NMClient.html#NMClient-struct"><span class="type">NMClient</span></a> *client</code></em>,
|
||||
<em class="parameter"><code><span class="type">NMConnection</span> *connection</code></em>,
|
||||
<em class="parameter"><code>const <span class="type">char</span> *secrets_setting_name</code></em>,
|
||||
<em class="parameter"><code>const <span class="type">char</span> *const*secrets_hints</code></em>);</pre>
|
||||
<p>Creates a wifi secrets dialog and populates it with setting values from
|
||||
<em class="parameter"><code>connection</code></em>
|
||||
. If <em class="parameter"><code>secrets_setting_name</code></em>
|
||||
and <em class="parameter"><code>secrets_hints</code></em>
|
||||
are not given
|
||||
this function creates an identical dialog as <a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-new" title="nma_wifi_dialog_new ()"><code class="function">nma_wifi_dialog_new()</code></a> would
|
||||
create with the <em class="parameter"><code>secrets_only</code></em>
|
||||
parameter <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>. Otherwise
|
||||
<em class="parameter"><code>secrets_setting_name</code></em>
|
||||
and <em class="parameter"><code>secrets_hints</code></em>
|
||||
determine the list of specific
|
||||
secrets that are being requested from the user and no editable entries
|
||||
are shown for any other settings.</p>
|
||||
<p>Note: only a subset of all settings and setting keys is supported as
|
||||
<em class="parameter"><code>secrets_setting_name</code></em>
|
||||
and <em class="parameter"><code>secrets_hints</code></em>
|
||||
.</p>
|
||||
<div class="refsect3">
|
||||
<a name="nma-wifi-dialog-new-for-secrets.parameters"></a><h4>Parameters</h4>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="parameters_name">
|
||||
<col class="parameters_description">
|
||||
<col width="200px" class="parameters_annotations">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>client</p></td>
|
||||
<td class="parameter_description"><p>client to retrieve list of devices or connections from</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>connection</p></td>
|
||||
<td class="parameter_description"><p>connection for which secrets are requested</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>secrets_setting_name</p></td>
|
||||
<td class="parameter_description"><p>setting name whose secrets are requested
|
||||
or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>secrets_hints</p></td>
|
||||
<td class="parameter_description"><p>array of setting key names within the setting given in
|
||||
<em class="parameter"><code>secrets_setting_name</code></em>
|
||||
which are requested or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a></p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect3">
|
||||
<a name="nma-wifi-dialog-new-for-secrets.returns"></a><h4>Returns</h4>
|
||||
<p> the dialog widget or <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> in case of error</p>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-wifi-dialog-new-for-hidden"></a><h3>nma_wifi_dialog_new_for_hidden ()</h3>
|
||||
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
nma_wifi_dialog_new_for_hidden (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/NMClient.html#NMClient-struct"><span class="type">NMClient</span></a> *client</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-wifi-dialog-new-for-create"></a><h3>nma_wifi_dialog_new_for_create ()</h3>
|
||||
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
nma_wifi_dialog_new_for_create (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/NMClient.html#NMClient-struct"><span class="type">NMClient</span></a> *client</code></em>);</pre>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-wifi-dialog-get-connection"></a><h3>nma_wifi_dialog_get_connection ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">NMConnection</span> *
|
||||
nma_wifi_dialog_get_connection (<em class="parameter"><code><a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog"><span class="type">NMAWifiDialog</span></a> *self</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/NMDevice.html#NMDevice-struct"><span class="type">NMDevice</span></a> **device</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/NMAccessPoint.html#NMAccessPoint-struct"><span class="type">NMAccessPoint</span></a> **ap</code></em>);</pre>
|
||||
<div class="refsect3">
|
||||
<a name="nma-wifi-dialog-get-connection.parameters"></a><h4>Parameters</h4>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="parameters_name">
|
||||
<col class="parameters_description">
|
||||
<col width="200px" class="parameters_annotations">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>self</p></td>
|
||||
<td class="parameter_description"><p>an <a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog"><span class="type">NMAWifiDialog</span></a></p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>device</p></td>
|
||||
<td class="parameter_description"><p>. </p></td>
|
||||
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>ap</p></td>
|
||||
<td class="parameter_description"><p>. </p></td>
|
||||
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect3">
|
||||
<a name="nma-wifi-dialog-get-connection.returns"></a><h4>Returns</h4>
|
||||
<p>. </p>
|
||||
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-wifi-dialog-nag-user"></a><h3>nma_wifi_dialog_nag_user ()</h3>
|
||||
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
nma_wifi_dialog_nag_user (<em class="parameter"><code><a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog"><span class="type">NMAWifiDialog</span></a> *self</code></em>);</pre>
|
||||
<div class="warning"><p><code class="literal">nma_wifi_dialog_nag_user</code> is deprecated and should not be used in newly-written code.</p></div>
|
||||
<div class="refsect3">
|
||||
<a name="nma-wifi-dialog-nag-user.returns"></a><h4>Returns</h4>
|
||||
<p>. </p>
|
||||
<p><span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span></p>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-wifi-dialog-set-nag-ignored"></a><h3>nma_wifi_dialog_set_nag_ignored ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_wifi_dialog_set_nag_ignored (<em class="parameter"><code><a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog"><span class="type">NMAWifiDialog</span></a> *self</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> ignored</code></em>);</pre>
|
||||
<div class="warning"><p><code class="literal">nma_wifi_dialog_set_nag_ignored</code> is deprecated and should not be used in newly-written code.</p></div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-wifi-dialog-get-nag-ignored"></a><h3>nma_wifi_dialog_get_nag_ignored ()</h3>
|
||||
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
||||
nma_wifi_dialog_get_nag_ignored (<em class="parameter"><code><a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog"><span class="type">NMAWifiDialog</span></a> *self</code></em>);</pre>
|
||||
<div class="warning"><p><code class="literal">nma_wifi_dialog_get_nag_ignored</code> is deprecated and should not be used in newly-written code.</p></div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-wifi-dialog-new-for-other"></a><h3>nma_wifi_dialog_new_for_other ()</h3>
|
||||
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="returnvalue">GtkWidget</span></a> *
|
||||
nma_wifi_dialog_new_for_other (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/NMClient.html#NMClient-struct"><span class="type">NMClient</span></a> *client</code></em>);</pre>
|
||||
<div class="warning"><p><code class="literal">nma_wifi_dialog_new_for_other</code> is deprecated and should not be used in newly-written code.</p></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="NMAWifiDialog.other_details"></a><h2>Types and Values</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<hr>Generated by GTK-Doc V1.29.1</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,64 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Annotation Glossary: libnma Reference Manual</title>
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
||||
<link rel="home" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="up" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="prev" href="deprecated-api-index.html" title="Index of deprecated API">
|
||||
<meta name="generator" content="GTK-Doc V1.29.1 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
||||
<td width="100%" align="left" class="shortcuts"><span id="nav_glossary"><a class="shortcut" href="#glsA">A</a>
|
||||
<span class="dim">|</span>
|
||||
<a class="shortcut" href="#glsE">E</a>
|
||||
<span class="dim">|</span>
|
||||
<a class="shortcut" href="#glsN">N</a>
|
||||
<span class="dim">|</span>
|
||||
<a class="shortcut" href="#glsO">O</a>
|
||||
<span class="dim">|</span>
|
||||
<a class="shortcut" href="#glsS">S</a>
|
||||
<span class="dim">|</span>
|
||||
<a class="shortcut" href="#glsT">T</a></span></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
||||
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
||||
<td><a accesskey="p" href="deprecated-api-index.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
||||
<td><img src="right-insensitive.png" width="16" height="16" border="0"></td>
|
||||
</tr></table>
|
||||
<div class="glossary">
|
||||
<div class="titlepage"><div><div><h1 class="title">
|
||||
<a name="annotation-glossary"></a>Annotation Glossary</h1></div></div></div>
|
||||
<a name="glsA"></a><h3 class="title">A</h3>
|
||||
<dt><span class="glossterm"><a name="annotation-glossterm-allow-none"></a>allow-none</span></dt>
|
||||
<dd class="glossdef"><p>NULL is OK, both for passing and for returning.</p></dd>
|
||||
<dt><span class="glossterm"><a name="annotation-glossterm-array"></a>array</span></dt>
|
||||
<dd class="glossdef"><p>Parameter points to an array of items.</p></dd>
|
||||
<a name="glsE"></a><h3 class="title">E</h3>
|
||||
<dt><span class="glossterm"><a name="annotation-glossterm-element-type"></a>element-type</span></dt>
|
||||
<dd class="glossdef"><p>Generics and defining elements of containers and arrays.</p></dd>
|
||||
<a name="glsN"></a><h3 class="title">N</h3>
|
||||
<dt><span class="glossterm"><a name="annotation-glossterm-nullable"></a>nullable</span></dt>
|
||||
<dd class="glossdef"><p>NULL may be passed as the value in, out, in-out; or as a return value.</p></dd>
|
||||
<a name="glsO"></a><h3 class="title">O</h3>
|
||||
<dt><span class="glossterm"><a name="annotation-glossterm-out"></a>out</span></dt>
|
||||
<dd class="glossdef"><p>Parameter for returning results. Default is <acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>.</p></dd>
|
||||
<a name="glsS"></a><h3 class="title">S</h3>
|
||||
<dt><span class="glossterm"><a name="annotation-glossterm-scope%20async"></a>scope async</span></dt>
|
||||
<dd class="glossdef"><p>The callback is valid until first called.</p></dd>
|
||||
<dt><span class="glossterm"><a name="annotation-glossterm-skip"></a>skip</span></dt>
|
||||
<dd class="glossdef"><p>Exposed in C code, not necessarily available in other languages.</p></dd>
|
||||
<a name="glsT"></a><h3 class="title">T</h3>
|
||||
<dt><span class="glossterm"><a name="annotation-glossterm-transfer%20full"></a>transfer full</span></dt>
|
||||
<dd class="glossdef"><p>Free data after the code is done.</p></dd>
|
||||
<dt><span class="glossterm"><a name="annotation-glossterm-transfer%20none"></a>transfer none</span></dt>
|
||||
<dd class="glossdef"><p>Don't free data after the code is done.</p></dd>
|
||||
<dt><span class="glossterm"><a name="annotation-glossterm-type"></a>type</span></dt>
|
||||
<dd class="glossdef"><p>Override the parsed C type with given type.</p></dd>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<hr>Generated by GTK-Doc V1.29.1</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,244 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Index of API available in version 1.8.0: libnma Reference Manual</title>
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
||||
<link rel="home" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="up" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="prev" href="api-index-full.html" title="API Index">
|
||||
<link rel="next" href="deprecated-api-index.html" title="Index of deprecated API">
|
||||
<meta name="generator" content="GTK-Doc V1.29.1 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
||||
<td width="100%" align="left" class="shortcuts"></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
||||
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
||||
<td><a accesskey="p" href="api-index-full.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="n" href="deprecated-api-index.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
<div class="index">
|
||||
<div class="titlepage"><div><div><h1 class="title">
|
||||
<a name="api-index-1.8.0"></a>Index of API available in version 1.8.0</h1></div></div></div>
|
||||
<div xmlns:xlink="http://www.w3.org/1999/xlink" class="index"><div class="indexdiv">
|
||||
<h3>N</h3>
|
||||
<dl>
|
||||
<dt id="ientry-idm45608803576272">NMABarCode:size, <a class="indexterm" href="NMABarCode.html#NMABarCode--size">The “size” property</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804314800">NMABarCode:text, <a class="indexterm" href="NMABarCode.html#NMABarCode--text">The “text” property</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608801888048">NMACertChooser::cert-password-validate, <a class="indexterm" href="NMACertChooser.html#NMACertChooser-cert-password-validate">The “cert-password-validate” signal</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608801871888">NMACertChooser::cert-validate, <a class="indexterm" href="NMACertChooser.html#NMACertChooser-cert-validate">The “cert-validate” signal</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608801855728">NMACertChooser::changed, <a class="indexterm" href="NMACertChooser.html#NMACertChooser-changed">The “changed” signal</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608801840432">NMACertChooser::key-password-validate, <a class="indexterm" href="NMACertChooser.html#NMACertChooser-key-password-validate">The “key-password-validate” signal</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608801824272">NMACertChooser::key-validate, <a class="indexterm" href="NMACertChooser.html#NMACertChooser-key-validate">The “key-validate” signal</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608801900064">NMACertChooser:flags, <a class="indexterm" href="NMACertChooser.html#NMACertChooser--flags">The “flags” property</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608801894672">NMACertChooser:title, <a class="indexterm" href="NMACertChooser.html#NMACertChooser--title">The “title” property</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608801922304">NMACertChooserFlags, <a class="indexterm" href="NMACertChooser.html#NMACertChooserFlags">enum NMACertChooserFlags</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803198768">NMAMobileFamily, <a class="indexterm" href="NMAMobileProvidersDatabase.html#NMAMobileFamily">enum NMAMobileFamily</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803181008">NMAMobileProvidersDatabase:country-codes, <a class="indexterm" href="NMAMobileProvidersDatabase.html#NMAMobileProvidersDatabase--country-codes">The “country-codes” property</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803175872">NMAMobileProvidersDatabase:service-providers, <a class="indexterm" href="NMAMobileProvidersDatabase.html#NMAMobileProvidersDatabase--service-providers">The “service-providers” property</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608805811072">NMAMobileWizardAccessMethod, <a class="indexterm" href="NMAMobileWizard.html#NMAMobileWizardAccessMethod">NMAMobileWizardAccessMethod</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608806608400">NMAMobileWizardCallback, <a class="indexterm" href="NMAMobileWizard.html#NMAMobileWizardCallback">NMAMobileWizardCallback ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804648112">NMAVpnPasswordDialog, <a class="indexterm" href="NMAVpnPasswordDialog.html">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804644400">NMAVpnPasswordDialogClass, <a class="indexterm" href="NMAVpnPasswordDialog.html#NMAVpnPasswordDialogClass">NMAVpnPasswordDialogClass</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803717440">nma_bar_code_draw, <a class="indexterm" href="NMABarCode.html#nma-bar-code-draw">nma_bar_code_draw ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803692416">nma_bar_code_get_size, <a class="indexterm" href="NMABarCode.html#nma-bar-code-get-size">nma_bar_code_get_size ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803648288">nma_bar_code_new, <a class="indexterm" href="NMABarCode.html#nma-bar-code-new">nma_bar_code_new ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608809181184">nma_bar_code_set_text, <a class="indexterm" href="NMABarCode.html#nma-bar-code-set-text">nma_bar_code_set_text ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803582448">NMA_BAR_CODE_SIZE, <a class="indexterm" href="NMABarCode.html#NMA-BAR-CODE-SIZE:CAPS">NMA_BAR_CODE_SIZE</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803586160">NMA_BAR_CODE_TEXT, <a class="indexterm" href="NMABarCode.html#NMA-BAR-CODE-TEXT:CAPS">NMA_BAR_CODE_TEXT</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608802114448">nma_cert_chooser_add_to_size_group, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-add-to-size-group">nma_cert_chooser_add_to_size_group ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803916512">nma_cert_chooser_get_cert, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-get-cert">nma_cert_chooser_get_cert ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803852176">nma_cert_chooser_get_cert_password, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-get-cert-password">nma_cert_chooser_get_cert_password ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608802016416">nma_cert_chooser_get_cert_password_flags, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-get-cert-password-flags">nma_cert_chooser_get_cert_password_flags ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803891936">nma_cert_chooser_get_cert_uri, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-get-cert-uri">nma_cert_chooser_get_cert_uri ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803789904">nma_cert_chooser_get_key, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-get-key">nma_cert_chooser_get_key ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803725440">nma_cert_chooser_get_key_password, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-get-key-password">nma_cert_chooser_get_key_password ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608801940416">nma_cert_chooser_get_key_password_flags, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-get-key-password-flags">nma_cert_chooser_get_key_password_flags ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803765280">nma_cert_chooser_get_key_uri, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-get-key-uri">nma_cert_chooser_get_key_uri ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608802134592">nma_cert_chooser_new, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-new">nma_cert_chooser_new ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608802075776">nma_cert_chooser_setup_cert_password_storage, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-setup-cert-password-storage">nma_cert_chooser_setup_cert_password_storage ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608801999776">nma_cert_chooser_setup_key_password_storage, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-setup-key-password-storage">nma_cert_chooser_setup_key_password_storage ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803960800">nma_cert_chooser_set_cert, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-set-cert">nma_cert_chooser_set_cert ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803872320">nma_cert_chooser_set_cert_password, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-set-cert-password">nma_cert_chooser_set_cert_password ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803936656">nma_cert_chooser_set_cert_uri, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-set-cert-uri">nma_cert_chooser_set_cert_uri ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803834272">nma_cert_chooser_set_key, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-set-key">nma_cert_chooser_set_key ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803745568">nma_cert_chooser_set_key_password, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-set-key-password">nma_cert_chooser_set_key_password ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803810128">nma_cert_chooser_set_key_uri, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-set-key-uri">nma_cert_chooser_set_key_uri ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608802042288">nma_cert_chooser_update_cert_password_storage, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-update-cert-password-storage">nma_cert_chooser_update_cert_password_storage ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608801966288">nma_cert_chooser_update_key_password_storage, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-update-key-password-storage">nma_cert_chooser_update_key_password_storage ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608802096544">nma_cert_chooser_validate, <a class="indexterm" href="NMACertChooser.html#nma-cert-chooser-validate">nma_cert_chooser_validate ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803454976">nma_country_info_get_country_code, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-country-info-get-country-code">nma_country_info_get_country_code ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803438544">nma_country_info_get_country_name, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-country-info-get-country-name">nma_country_info_get_country_name ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803423104">nma_country_info_get_providers, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-country-info-get-providers">nma_country_info_get_providers ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608807869248">nma_country_info_ref, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-country-info-ref">nma_country_info_ref ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608807863296">nma_country_info_unref, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-country-info-unref">nma_country_info_unref ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608807990528">nma_mobile_access_method_get_3gpp_apn, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-3gpp-apn">nma_mobile_access_method_get_3gpp_apn ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608808009248">nma_mobile_access_method_get_dns, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-dns">nma_mobile_access_method_get_dns ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608807972800">nma_mobile_access_method_get_family, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-family">nma_mobile_access_method_get_family ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608808026976">nma_mobile_access_method_get_gateway, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-gateway">nma_mobile_access_method_get_gateway ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608808080272">nma_mobile_access_method_get_name, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-name">nma_mobile_access_method_get_name ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608808044704">nma_mobile_access_method_get_password, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-password">nma_mobile_access_method_get_password ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608808062432">nma_mobile_access_method_get_username, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-username">nma_mobile_access_method_get_username ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608808092304">nma_mobile_access_method_ref, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-ref">nma_mobile_access_method_ref ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608808086288">nma_mobile_access_method_unref, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-unref">nma_mobile_access_method_unref ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803301760">nma_mobile_providers_database_dump, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-dump">nma_mobile_providers_database_dump ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803319088">nma_mobile_providers_database_get_countries, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-get-countries">nma_mobile_providers_database_get_countries ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803268272">nma_mobile_providers_database_lookup_3gpp_mcc_mnc, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-lookup-3gpp-mcc-mnc">nma_mobile_providers_database_lookup_3gpp_mcc_mnc ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803247584">nma_mobile_providers_database_lookup_cdma_sid, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-lookup-cdma-sid">nma_mobile_providers_database_lookup_cdma_sid ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803288960">nma_mobile_providers_database_lookup_country, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-lookup-country">nma_mobile_providers_database_lookup_country ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803406656">nma_mobile_providers_database_new, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-new">nma_mobile_providers_database_new ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803375088">nma_mobile_providers_database_new_finish, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-new-finish">nma_mobile_providers_database_new_finish ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803351536">nma_mobile_providers_database_new_sync, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-new-sync">nma_mobile_providers_database_new_sync ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608803226928">nma_mobile_providers_split_3gpp_mcc_mnc, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-split-3gpp-mcc-mnc">nma_mobile_providers_split_3gpp_mcc_mnc ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608807906496">nma_mobile_provider_get_3gpp_mcc_mnc, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-provider-get-3gpp-mcc-mnc">nma_mobile_provider_get_3gpp_mcc_mnc ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608807887904">nma_mobile_provider_get_cdma_sid, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-provider-get-cdma-sid">nma_mobile_provider_get_cdma_sid ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608807925584">nma_mobile_provider_get_methods, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-provider-get-methods">nma_mobile_provider_get_methods ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608807943616">nma_mobile_provider_get_name, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-provider-get-name">nma_mobile_provider_get_name ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608807955616">nma_mobile_provider_ref, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-provider-ref">nma_mobile_provider_ref ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608807949632">nma_mobile_provider_unref, <a class="indexterm" href="NMAMobileProvidersDatabase.html#nma-mobile-provider-unref">nma_mobile_provider_unref ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608807179312">nma_mobile_wizard_destroy, <a class="indexterm" href="NMAMobileWizard.html#nma-mobile-wizard-destroy">nma_mobile_wizard_destroy ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608805812352">nma_mobile_wizard_new, <a class="indexterm" href="NMAMobileWizard.html#nma-mobile-wizard-new">nma_mobile_wizard_new ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608805528928">nma_mobile_wizard_present, <a class="indexterm" href="NMAMobileWizard.html#nma-mobile-wizard-present">nma_mobile_wizard_present ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608808527312">nma_utils_menu_to_secret_flags, <a class="indexterm" href="libnma-nma-ui-utils.html#nma-utils-menu-to-secret-flags">nma_utils_menu_to_secret_flags ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608809119344">nma_utils_setup_password_storage, <a class="indexterm" href="libnma-nma-ui-utils.html#nma-utils-setup-password-storage">nma_utils_setup_password_storage ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608807616544">nma_utils_update_password_storage, <a class="indexterm" href="libnma-nma-ui-utils.html#nma-utils-update-password-storage">nma_utils_update_password_storage ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608806603360">nma_vpn_password_dialog_focus_password, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-focus-password">nma_vpn_password_dialog_focus_password ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608810016352">nma_vpn_password_dialog_focus_password_secondary, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-focus-password-secondary">nma_vpn_password_dialog_focus_password_secondary ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608810180304">nma_vpn_password_dialog_focus_password_ternary, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-focus-password-ternary">nma_vpn_password_dialog_focus_password_ternary ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804667712">nma_vpn_password_dialog_get_password, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-get-password">nma_vpn_password_dialog_get_password ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804661776">nma_vpn_password_dialog_get_password_secondary, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-get-password-secondary">nma_vpn_password_dialog_get_password_secondary ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804655888">nma_vpn_password_dialog_get_password_ternary, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-get-password-ternary">nma_vpn_password_dialog_get_password_ternary ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608805020752">nma_vpn_password_dialog_new, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-new">nma_vpn_password_dialog_new ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608805719792">nma_vpn_password_dialog_run_and_block, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-run-and-block">nma_vpn_password_dialog_run_and_block ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608806597488">nma_vpn_password_dialog_set_password, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password">nma_vpn_password_dialog_set_password ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608806540064">nma_vpn_password_dialog_set_password_label, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-label">nma_vpn_password_dialog_set_password_label ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608806709040">nma_vpn_password_dialog_set_password_secondary, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-secondary">nma_vpn_password_dialog_set_password_secondary ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608805220672">nma_vpn_password_dialog_set_password_secondary_label, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-secondary-label">nma_vpn_password_dialog_set_password_secondary_label ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804867456">nma_vpn_password_dialog_set_password_ternary, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-ternary">nma_vpn_password_dialog_set_password_ternary ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804860064">nma_vpn_password_dialog_set_password_ternary_label, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-ternary-label">nma_vpn_password_dialog_set_password_ternary_label ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608806983424">nma_vpn_password_dialog_set_show_password, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-show-password">nma_vpn_password_dialog_set_show_password ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608809962816">nma_vpn_password_dialog_set_show_password_secondary, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-show-password-secondary">nma_vpn_password_dialog_set_show_password_secondary ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608810187536">nma_vpn_password_dialog_set_show_password_ternary, <a class="indexterm" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-show-password-ternary">nma_vpn_password_dialog_set_show_password_ternary ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804477968">nma_wifi_dialog_get_connection, <a class="indexterm" href="NMAWifiDialog.html#nma-wifi-dialog-get-connection">nma_wifi_dialog_get_connection ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804430032">nma_wifi_dialog_get_nag_ignored, <a class="indexterm" href="NMAWifiDialog.html#nma-wifi-dialog-get-nag-ignored">nma_wifi_dialog_get_nag_ignored ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804450144">nma_wifi_dialog_nag_user, <a class="indexterm" href="NMAWifiDialog.html#nma-wifi-dialog-nag-user">nma_wifi_dialog_nag_user ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608805147408">nma_wifi_dialog_new, <a class="indexterm" href="NMAWifiDialog.html#nma-wifi-dialog-new">nma_wifi_dialog_new ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804483984">nma_wifi_dialog_new_for_create, <a class="indexterm" href="NMAWifiDialog.html#nma-wifi-dialog-new-for-create">nma_wifi_dialog_new_for_create ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804490000">nma_wifi_dialog_new_for_hidden, <a class="indexterm" href="NMAWifiDialog.html#nma-wifi-dialog-new-for-hidden">nma_wifi_dialog_new_for_hidden ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804422272">nma_wifi_dialog_new_for_other, <a class="indexterm" href="NMAWifiDialog.html#nma-wifi-dialog-new-for-other">nma_wifi_dialog_new_for_other ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608809472192">nma_wifi_dialog_new_for_secrets, <a class="indexterm" href="NMAWifiDialog.html#nma-wifi-dialog-new-for-secrets">nma_wifi_dialog_new_for_secrets ()</a>
|
||||
</dt>
|
||||
<dt id="ientry-idm45608804439296">nma_wifi_dialog_set_nag_ignored, <a class="indexterm" href="NMAWifiDialog.html#nma-wifi-dialog-set-nag-ignored">nma_wifi_dialog_set_nag_ignored ()</a>
|
||||
</dt>
|
||||
</dl>
|
||||
</div></div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<hr>Generated by GTK-Doc V1.29.1</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,564 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>API Index: libnma Reference Manual</title>
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
||||
<link rel="home" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="up" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="prev" href="object-tree.html" title="Object Hierarchy">
|
||||
<link rel="next" href="api-index-1.8.0.html" title="Index of API available in version 1.8.0">
|
||||
<meta name="generator" content="GTK-Doc V1.29.1 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
||||
<td width="100%" align="left" class="shortcuts"><span id="nav_index"><a class="shortcut" href="#idxB">B</a>
|
||||
<span class="dim">|</span>
|
||||
<a class="shortcut" href="#idxC">C</a>
|
||||
<span class="dim">|</span>
|
||||
<a class="shortcut" href="#idxM">M</a>
|
||||
<span class="dim">|</span>
|
||||
<a class="shortcut" href="#idxQ">Q</a>
|
||||
<span class="dim">|</span>
|
||||
<a class="shortcut" href="#idxU">U</a>
|
||||
<span class="dim">|</span>
|
||||
<a class="shortcut" href="#idxV">V</a>
|
||||
<span class="dim">|</span>
|
||||
<a class="shortcut" href="#idxW">W</a></span></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
||||
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
||||
<td><a accesskey="p" href="object-tree.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="n" href="api-index-1.8.0.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
<div class="index">
|
||||
<div class="titlepage"><div><div><h1 class="title">
|
||||
<a name="api-index-full"></a>API Index</h1></div></div></div>
|
||||
<a name="idx"></a><a name="idxB"></a><h3 class="title">B</h3>
|
||||
<dt>
|
||||
<a class="link" href="NMABarCode.html#NMABarCode--size" title="The “size” property">NMABarCode:size</a>, object property in <a class="link" href="NMABarCode.html" title="NMABarCode">NMABarCode</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMABarCode.html#NMABarCode--text" title="The “text” property">NMABarCode:text</a>, object property in <a class="link" href="NMABarCode.html" title="NMABarCode">NMABarCode</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
NMABarCodeWidget:connection, object property in NMABarCodeWidget
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMABarCode.html#nma-bar-code-draw" title="nma_bar_code_draw ()">nma_bar_code_draw</a>, function in <a class="link" href="NMABarCode.html" title="NMABarCode">NMABarCode</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMABarCode.html#nma-bar-code-get-size" title="nma_bar_code_get_size ()">nma_bar_code_get_size</a>, function in <a class="link" href="NMABarCode.html" title="NMABarCode">NMABarCode</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMABarCode.html#nma-bar-code-new" title="nma_bar_code_new ()">nma_bar_code_new</a>, function in <a class="link" href="NMABarCode.html" title="NMABarCode">NMABarCode</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMABarCode.html#nma-bar-code-set-text" title="nma_bar_code_set_text ()">nma_bar_code_set_text</a>, function in <a class="link" href="NMABarCode.html" title="NMABarCode">NMABarCode</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMABarCode.html#NMA-BAR-CODE-SIZE:CAPS" title="NMA_BAR_CODE_SIZE">NMA_BAR_CODE_SIZE</a>, macro in <a class="link" href="NMABarCode.html" title="NMABarCode">NMABarCode</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMABarCode.html#NMA-BAR-CODE-TEXT:CAPS" title="NMA_BAR_CODE_TEXT">NMA_BAR_CODE_TEXT</a>, macro in <a class="link" href="NMABarCode.html" title="NMABarCode">NMABarCode</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
NMA_BAR_CODE_WIDGET_CONNECTION, macro in NMABarCodeWidget
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
nma_bar_code_widget_new, function in NMABarCodeWidget
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<a name="idxC"></a><h3 class="title">C</h3>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#NMACertChooser-cert-password-validate" title="The “cert-password-validate” signal">NMACertChooser::cert-password-validate</a>, object signal in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#NMACertChooser-cert-validate" title="The “cert-validate” signal">NMACertChooser::cert-validate</a>, object signal in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#NMACertChooser-changed" title="The “changed” signal">NMACertChooser::changed</a>, object signal in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#NMACertChooser-key-password-validate" title="The “key-password-validate” signal">NMACertChooser::key-password-validate</a>, object signal in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#NMACertChooser-key-validate" title="The “key-validate” signal">NMACertChooser::key-validate</a>, object signal in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#NMACertChooser--flags" title="The “flags” property">NMACertChooser:flags</a>, object property in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#NMACertChooser--title" title="The “title” property">NMACertChooser:title</a>, object property in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#NMACertChooserFlags" title="enum NMACertChooserFlags">NMACertChooserFlags</a>, enum in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-add-to-size-group" title="nma_cert_chooser_add_to_size_group ()">nma_cert_chooser_add_to_size_group</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-get-cert" title="nma_cert_chooser_get_cert ()">nma_cert_chooser_get_cert</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-get-cert-password" title="nma_cert_chooser_get_cert_password ()">nma_cert_chooser_get_cert_password</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-get-cert-password-flags" title="nma_cert_chooser_get_cert_password_flags ()">nma_cert_chooser_get_cert_password_flags</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-get-cert-uri" title="nma_cert_chooser_get_cert_uri ()">nma_cert_chooser_get_cert_uri</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-get-key" title="nma_cert_chooser_get_key ()">nma_cert_chooser_get_key</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-get-key-password" title="nma_cert_chooser_get_key_password ()">nma_cert_chooser_get_key_password</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-get-key-password-flags" title="nma_cert_chooser_get_key_password_flags ()">nma_cert_chooser_get_key_password_flags</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-get-key-uri" title="nma_cert_chooser_get_key_uri ()">nma_cert_chooser_get_key_uri</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-new" title="nma_cert_chooser_new ()">nma_cert_chooser_new</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-setup-cert-password-storage" title="nma_cert_chooser_setup_cert_password_storage ()">nma_cert_chooser_setup_cert_password_storage</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-setup-key-password-storage" title="nma_cert_chooser_setup_key_password_storage ()">nma_cert_chooser_setup_key_password_storage</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-set-cert" title="nma_cert_chooser_set_cert ()">nma_cert_chooser_set_cert</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-set-cert-password" title="nma_cert_chooser_set_cert_password ()">nma_cert_chooser_set_cert_password</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-set-cert-uri" title="nma_cert_chooser_set_cert_uri ()">nma_cert_chooser_set_cert_uri</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-set-key" title="nma_cert_chooser_set_key ()">nma_cert_chooser_set_key</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-set-key-password" title="nma_cert_chooser_set_key_password ()">nma_cert_chooser_set_key_password</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-set-key-uri" title="nma_cert_chooser_set_key_uri ()">nma_cert_chooser_set_key_uri</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-update-cert-password-storage" title="nma_cert_chooser_update_cert_password_storage ()">nma_cert_chooser_update_cert_password_storage</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-update-key-password-storage" title="nma_cert_chooser_update_key_password_storage ()">nma_cert_chooser_update_key_password_storage</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMACertChooser.html#nma-cert-chooser-validate" title="nma_cert_chooser_validate ()">nma_cert_chooser_validate</a>, function in <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-country-info-get-country-code" title="nma_country_info_get_country_code ()">nma_country_info_get_country_code</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-country-info-get-country-name" title="nma_country_info_get_country_name ()">nma_country_info_get_country_name</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-country-info-get-providers" title="nma_country_info_get_providers ()">nma_country_info_get_providers</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-country-info-ref" title="nma_country_info_ref ()">nma_country_info_ref</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-country-info-unref" title="nma_country_info_unref ()">nma_country_info_unref</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<a name="idxM"></a><h3 class="title">M</h3>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#NMAMobileFamily" title="enum NMAMobileFamily">NMAMobileFamily</a>, enum in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#NMAMobileProvidersDatabase--country-codes" title="The “country-codes” property">NMAMobileProvidersDatabase:country-codes</a>, object property in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#NMAMobileProvidersDatabase--service-providers" title="The “service-providers” property">NMAMobileProvidersDatabase:service-providers</a>, object property in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileWizard.html#NMAMobileWizardAccessMethod" title="NMAMobileWizardAccessMethod">NMAMobileWizardAccessMethod</a>, struct in <a class="link" href="NMAMobileWizard.html" title="NMAMobileWizard">NMAMobileWizard</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileWizard.html#NMAMobileWizardCallback" title="NMAMobileWizardCallback ()">NMAMobileWizardCallback</a>, user_function in <a class="link" href="NMAMobileWizard.html" title="NMAMobileWizard">NMAMobileWizard</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-3gpp-apn" title="nma_mobile_access_method_get_3gpp_apn ()">nma_mobile_access_method_get_3gpp_apn</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-dns" title="nma_mobile_access_method_get_dns ()">nma_mobile_access_method_get_dns</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-family" title="nma_mobile_access_method_get_family ()">nma_mobile_access_method_get_family</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-gateway" title="nma_mobile_access_method_get_gateway ()">nma_mobile_access_method_get_gateway</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-name" title="nma_mobile_access_method_get_name ()">nma_mobile_access_method_get_name</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-password" title="nma_mobile_access_method_get_password ()">nma_mobile_access_method_get_password</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-username" title="nma_mobile_access_method_get_username ()">nma_mobile_access_method_get_username</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-ref" title="nma_mobile_access_method_ref ()">nma_mobile_access_method_ref</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-access-method-unref" title="nma_mobile_access_method_unref ()">nma_mobile_access_method_unref</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-dump" title="nma_mobile_providers_database_dump ()">nma_mobile_providers_database_dump</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-get-countries" title="nma_mobile_providers_database_get_countries ()">nma_mobile_providers_database_get_countries</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-lookup-3gpp-mcc-mnc" title="nma_mobile_providers_database_lookup_3gpp_mcc_mnc ()">nma_mobile_providers_database_lookup_3gpp_mcc_mnc</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-lookup-cdma-sid" title="nma_mobile_providers_database_lookup_cdma_sid ()">nma_mobile_providers_database_lookup_cdma_sid</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-lookup-country" title="nma_mobile_providers_database_lookup_country ()">nma_mobile_providers_database_lookup_country</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-new" title="nma_mobile_providers_database_new ()">nma_mobile_providers_database_new</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-new-finish" title="nma_mobile_providers_database_new_finish ()">nma_mobile_providers_database_new_finish</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-new-sync" title="nma_mobile_providers_database_new_sync ()">nma_mobile_providers_database_new_sync</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-providers-split-3gpp-mcc-mnc" title="nma_mobile_providers_split_3gpp_mcc_mnc ()">nma_mobile_providers_split_3gpp_mcc_mnc</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-provider-get-3gpp-mcc-mnc" title="nma_mobile_provider_get_3gpp_mcc_mnc ()">nma_mobile_provider_get_3gpp_mcc_mnc</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-provider-get-cdma-sid" title="nma_mobile_provider_get_cdma_sid ()">nma_mobile_provider_get_cdma_sid</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-provider-get-methods" title="nma_mobile_provider_get_methods ()">nma_mobile_provider_get_methods</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-provider-get-name" title="nma_mobile_provider_get_name ()">nma_mobile_provider_get_name</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-provider-ref" title="nma_mobile_provider_ref ()">nma_mobile_provider_ref</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileProvidersDatabase.html#nma-mobile-provider-unref" title="nma_mobile_provider_unref ()">nma_mobile_provider_unref</a>, function in <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileWizard.html#nma-mobile-wizard-destroy" title="nma_mobile_wizard_destroy ()">nma_mobile_wizard_destroy</a>, function in <a class="link" href="NMAMobileWizard.html" title="NMAMobileWizard">NMAMobileWizard</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileWizard.html#nma-mobile-wizard-new" title="nma_mobile_wizard_new ()">nma_mobile_wizard_new</a>, function in <a class="link" href="NMAMobileWizard.html" title="NMAMobileWizard">NMAMobileWizard</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAMobileWizard.html#nma-mobile-wizard-present" title="nma_mobile_wizard_present ()">nma_mobile_wizard_present</a>, function in <a class="link" href="NMAMobileWizard.html" title="NMAMobileWizard">NMAMobileWizard</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<a name="idxQ"></a><h3 class="title">Q</h3>
|
||||
<dt>
|
||||
qrcodegen_BUFFER_LEN_FOR_VERSION, macro in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_BUFFER_LEN_MAX, macro in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_calcSegmentBufferSize, function in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_Ecc, enum in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_encodeBinary, function in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_encodeSegments, function in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_encodeSegmentsAdvanced, function in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_encodeText, function in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_getModule, function in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_getSize, function in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_isAlphanumeric, function in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_isNumeric, function in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_makeAlphanumeric, function in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_makeBytes, function in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_makeEci, function in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_makeNumeric, function in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_Mask, enum in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_Mode, enum in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_Segment, struct in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_VERSION_MAX, macro in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
qrcodegen_VERSION_MIN, macro in qrcodegen
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<a name="idxU"></a><h3 class="title">U</h3>
|
||||
<dt>
|
||||
<a class="link" href="libnma-nma-ui-utils.html#nma-utils-menu-to-secret-flags" title="nma_utils_menu_to_secret_flags ()">nma_utils_menu_to_secret_flags</a>, function in <a class="link" href="libnma-nma-ui-utils.html" title="nma-ui-utils">nma-ui-utils</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="libnma-nma-ui-utils.html#nma-utils-setup-password-storage" title="nma_utils_setup_password_storage ()">nma_utils_setup_password_storage</a>, function in <a class="link" href="libnma-nma-ui-utils.html" title="nma-ui-utils">nma-ui-utils</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="libnma-nma-ui-utils.html#nma-utils-update-password-storage" title="nma_utils_update_password_storage ()">nma_utils_update_password_storage</a>, function in <a class="link" href="libnma-nma-ui-utils.html" title="nma-ui-utils">nma-ui-utils</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<a name="idxV"></a><h3 class="title">V</h3>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>, typedef in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#NMAVpnPasswordDialogClass" title="NMAVpnPasswordDialogClass">NMAVpnPasswordDialogClass</a>, typedef in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-focus-password" title="nma_vpn_password_dialog_focus_password ()">nma_vpn_password_dialog_focus_password</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-focus-password-secondary" title="nma_vpn_password_dialog_focus_password_secondary ()">nma_vpn_password_dialog_focus_password_secondary</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-focus-password-ternary" title="nma_vpn_password_dialog_focus_password_ternary ()">nma_vpn_password_dialog_focus_password_ternary</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-get-password" title="nma_vpn_password_dialog_get_password ()">nma_vpn_password_dialog_get_password</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-get-password-secondary" title="nma_vpn_password_dialog_get_password_secondary ()">nma_vpn_password_dialog_get_password_secondary</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-get-password-ternary" title="nma_vpn_password_dialog_get_password_ternary ()">nma_vpn_password_dialog_get_password_ternary</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-new" title="nma_vpn_password_dialog_new ()">nma_vpn_password_dialog_new</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-run-and-block" title="nma_vpn_password_dialog_run_and_block ()">nma_vpn_password_dialog_run_and_block</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password" title="nma_vpn_password_dialog_set_password ()">nma_vpn_password_dialog_set_password</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-label" title="nma_vpn_password_dialog_set_password_label ()">nma_vpn_password_dialog_set_password_label</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-secondary" title="nma_vpn_password_dialog_set_password_secondary ()">nma_vpn_password_dialog_set_password_secondary</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-secondary-label" title="nma_vpn_password_dialog_set_password_secondary_label ()">nma_vpn_password_dialog_set_password_secondary_label</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-ternary" title="nma_vpn_password_dialog_set_password_ternary ()">nma_vpn_password_dialog_set_password_ternary</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-ternary-label" title="nma_vpn_password_dialog_set_password_ternary_label ()">nma_vpn_password_dialog_set_password_ternary_label</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-show-password" title="nma_vpn_password_dialog_set_show_password ()">nma_vpn_password_dialog_set_show_password</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-show-password-secondary" title="nma_vpn_password_dialog_set_show_password_secondary ()">nma_vpn_password_dialog_set_show_password_secondary</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-show-password-ternary" title="nma_vpn_password_dialog_set_show_password_ternary ()">nma_vpn_password_dialog_set_show_password_ternary</a>, function in <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<a name="idxW"></a><h3 class="title">W</h3>
|
||||
<dt>
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-get-connection" title="nma_wifi_dialog_get_connection ()">nma_wifi_dialog_get_connection</a>, function in <a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog">NMAWifiDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-get-nag-ignored" title="nma_wifi_dialog_get_nag_ignored ()">nma_wifi_dialog_get_nag_ignored</a>, function in <a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog">NMAWifiDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-nag-user" title="nma_wifi_dialog_nag_user ()">nma_wifi_dialog_nag_user</a>, function in <a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog">NMAWifiDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-new" title="nma_wifi_dialog_new ()">nma_wifi_dialog_new</a>, function in <a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog">NMAWifiDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-new-for-create" title="nma_wifi_dialog_new_for_create ()">nma_wifi_dialog_new_for_create</a>, function in <a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog">NMAWifiDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-new-for-hidden" title="nma_wifi_dialog_new_for_hidden ()">nma_wifi_dialog_new_for_hidden</a>, function in <a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog">NMAWifiDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-new-for-other" title="nma_wifi_dialog_new_for_other ()">nma_wifi_dialog_new_for_other</a>, function in <a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog">NMAWifiDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-new-for-secrets" title="nma_wifi_dialog_new_for_secrets ()">nma_wifi_dialog_new_for_secrets</a>, function in <a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog">NMAWifiDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
<dt>
|
||||
<a class="link" href="NMAWifiDialog.html#nma-wifi-dialog-set-nag-ignored" title="nma_wifi_dialog_set_nag_ignored ()">nma_wifi_dialog_set_nag_ignored</a>, function in <a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog">NMAWifiDialog</a>
|
||||
</dt>
|
||||
<dd></dd>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<hr>Generated by GTK-Doc V1.29.1</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,52 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>libnma API reference: libnma Reference Manual</title>
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
||||
<link rel="home" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="up" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="prev" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="next" href="libnma-nma-ui-utils.html" title="nma-ui-utils">
|
||||
<meta name="generator" content="GTK-Doc V1.29.1 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
||||
<td width="100%" align="left" class="shortcuts"></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
||||
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
||||
<td><a accesskey="p" href="index.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="n" href="libnma-nma-ui-utils.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
<div class="chapter">
|
||||
<div class="titlepage"><div><div><h1 class="title">
|
||||
<a name="api-reference"></a>libnma API reference</h1></div></div></div>
|
||||
<div class="toc"><dl class="toc">
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="libnma-nma-ui-utils.html">nma-ui-utils</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="NMAMobileWizard.html">NMAMobileWizard</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="NMAMobileProvidersDatabase.html">NMAMobileProvidersDatabase</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="NMAVpnPasswordDialog.html">NMAVpnPasswordDialog</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="NMAWifiDialog.html">NMAWifiDialog</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="NMACertChooser.html">NMACertChooser</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="NMABarCode.html">NMABarCode</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
</dl></div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<hr>Generated by GTK-Doc V1.29.1</div>
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 256 B |
|
@ -0,0 +1,82 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>libnma Reference Manual: libnma Reference Manual</title>
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
||||
<link rel="home" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="next" href="api-reference.html" title="libnma API reference">
|
||||
<meta name="generator" content="GTK-Doc V1.29.1 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<div class="book">
|
||||
<div class="titlepage">
|
||||
<div>
|
||||
<div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">libnma Reference Manual</p></th></tr></table></div>
|
||||
<div><p class="releaseinfo">
|
||||
for libnma 1.8.24.
|
||||
The latest version of this documentation can be found on-line at
|
||||
<a class="ulink" href="https://gnome.pages.gitlab.gnome.org/network-manager-applet/libnma/" target="_top">https://gnome.pages.gitlab.gnome.org/network-manager-applet/libnma/</a>
|
||||
</p></div>
|
||||
<div><p class="copyright">Copyright © 2017, 2018 The network-manager-applet Authors</p></div>
|
||||
<div><div class="legalnotice">
|
||||
<a name="id-1.1.4"></a><p>
|
||||
Permission is granted to copy, distribute and/or modify this
|
||||
document under the terms of the <em class="citetitle">GNU Free
|
||||
Documentation License</em>, Version 1.1 or any later
|
||||
version published by the Free Software Foundation with no
|
||||
Invariant Sections, no Front-Cover Texts, and no Back-Cover
|
||||
Texts. You may obtain a copy of the <em class="citetitle">GNU Free
|
||||
Documentation License</em> from the Free Software
|
||||
Foundation by visiting <a class="ulink" href="http://www.fsf.org" target="_top">their Web site</a> or by writing
|
||||
to:
|
||||
|
||||
</p>
|
||||
<div class="address"><p><br>
|
||||
The Free Software Foundation, Inc.,<br>
|
||||
<span class="street">51 Franklin Street</span> - Fifth Floor,<br>
|
||||
<span class="city">Boston</span>, <span class="state">MA</span> <span class="postcode">02110-1301</span>,<br>
|
||||
<span class="country">USA</span><br>
|
||||
</p></div>
|
||||
<p>
|
||||
</p>
|
||||
</div></div>
|
||||
</div>
|
||||
<hr>
|
||||
</div>
|
||||
<div class="toc"><dl class="toc">
|
||||
<dt><span class="chapter"><a href="api-reference.html">libnma API reference</a></span></dt>
|
||||
<dd><dl>
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="libnma-nma-ui-utils.html">nma-ui-utils</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="NMAMobileWizard.html">NMAMobileWizard</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="NMAMobileProvidersDatabase.html">NMAMobileProvidersDatabase</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="NMAVpnPasswordDialog.html">NMAVpnPasswordDialog</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="NMAWifiDialog.html">NMAWifiDialog</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="NMACertChooser.html">NMACertChooser</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
<dt>
|
||||
<span class="refentrytitle"><a href="NMABarCode.html">NMABarCode</a></span><span class="refpurpose"></span>
|
||||
</dt>
|
||||
</dl></dd>
|
||||
<dt><span class="chapter"><a href="object-tree.html">Object Hierarchy</a></span></dt>
|
||||
<dt><span class="index"><a href="api-index-full.html">API Index</a></span></dt>
|
||||
<dt><span class="index"><a href="api-index-1.8.0.html">Index of API available in version 1.8.0</a></span></dt>
|
||||
<dt><span class="glossary"><a href="annotation-glossary.html">Annotation Glossary</a></span></dt>
|
||||
</dl></div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<hr>Generated by GTK-Doc V1.29.1</div>
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 395 B |
After Width: | Height: | Size: 262 B |
|
@ -0,0 +1,224 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>nma-ui-utils: libnma Reference Manual</title>
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
||||
<link rel="home" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="up" href="api-reference.html" title="libnma API reference">
|
||||
<link rel="prev" href="api-reference.html" title="libnma API reference">
|
||||
<link rel="next" href="NMAMobileWizard.html" title="NMAMobileWizard">
|
||||
<meta name="generator" content="GTK-Doc V1.29.1 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
||||
<td width="100%" align="left" class="shortcuts">
|
||||
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
||||
<a href="#libnma-nma-ui-utils.description" class="shortcut">Description</a></span>
|
||||
</td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
||||
<td><a accesskey="u" href="api-reference.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
||||
<td><a accesskey="p" href="api-reference.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="n" href="NMAMobileWizard.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
<div class="refentry">
|
||||
<a name="libnma-nma-ui-utils"></a><div class="titlepage"></div>
|
||||
<div class="refnamediv"><table width="100%"><tr>
|
||||
<td valign="top">
|
||||
<h2><span class="refentrytitle"><a name="libnma-nma-ui-utils.top_of_page"></a>nma-ui-utils</span></h2>
|
||||
<p>nma-ui-utils</p>
|
||||
</td>
|
||||
<td class="gallery_image" valign="top" align="right"></td>
|
||||
</tr></table></div>
|
||||
<div class="refsect1">
|
||||
<a name="libnma-nma-ui-utils.functions"></a><h2>Functions</h2>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="functions_return">
|
||||
<col class="functions_name">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="libnma-nma-ui-utils.html#nma-utils-setup-password-storage" title="nma_utils_setup_password_storage ()">nma_utils_setup_password_storage</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<a href="/usr/share/gtk-doc/html/libnm/NMSetting.html#NMSettingSecretFlags"><span class="returnvalue">NMSettingSecretFlags</span></a>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="libnma-nma-ui-utils.html#nma-utils-menu-to-secret-flags" title="nma_utils_menu_to_secret_flags ()">nma_utils_menu_to_secret_flags</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="function_type">
|
||||
<span class="returnvalue">void</span>
|
||||
</td>
|
||||
<td class="function_name">
|
||||
<a class="link" href="libnma-nma-ui-utils.html#nma-utils-update-password-storage" title="nma_utils_update_password_storage ()">nma_utils_update_password_storage</a> <span class="c_punctuation">()</span>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="libnma-nma-ui-utils.description"></a><h2>Description</h2>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="libnma-nma-ui-utils.functions_details"></a><h2>Functions</h2>
|
||||
<div class="refsect2">
|
||||
<a name="nma-utils-setup-password-storage"></a><h3>nma_utils_setup_password_storage ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_utils_setup_password_storage (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="type">GtkWidget</span></a> *passwd_entry</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/NMSetting.html#NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> initial_flags</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/NMSetting.html#NMSetting-struct"><span class="type">NMSetting</span></a> *setting</code></em>,
|
||||
<em class="parameter"><code>const <span class="type">char</span> *password_flags_name</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> with_not_required</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> ask_mode</code></em>);</pre>
|
||||
<p>Adds a secondary icon and creates a popup menu for password entry.
|
||||
The active menu item is set up according to initial_flags, or
|
||||
from <em class="parameter"><code>setting</code></em>
|
||||
/<em class="parameter"><code>password_flags_name</code></em>
|
||||
(if they are not NULL).
|
||||
If the <em class="parameter"><code>setting</code></em>
|
||||
/<em class="parameter"><code>password_flags_name</code></em>
|
||||
are not NULL, secret flags will
|
||||
be automatically updated in the setting when menu is changed.</p>
|
||||
<div class="refsect3">
|
||||
<a name="nma-utils-setup-password-storage.parameters"></a><h4>Parameters</h4>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="parameters_name">
|
||||
<col class="parameters_description">
|
||||
<col width="200px" class="parameters_annotations">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>passwd_entry</p></td>
|
||||
<td class="parameter_description"><p>password <a href="/usr/share/gtk-doc/html/gtk4/GtkEntry.html#GtkEntry-struct"><span class="type">GtkEntry</span></a> which the icon is attached to</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>initial_flags</p></td>
|
||||
<td class="parameter_description"><p>initial secret flags to setup password menu from</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>setting</p></td>
|
||||
<td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/libnm/NMSetting.html#NMSetting-struct"><span class="type">NMSetting</span></a> containing the password, or NULL</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>password_flags_name</p></td>
|
||||
<td class="parameter_description"><p>name of the secret flags (like psk-flags), or NULL</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>with_not_required</p></td>
|
||||
<td class="parameter_description"><p>whether to include "Not required" menu item</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>ask_mode</p></td>
|
||||
<td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the entry is shown in ASK mode. That means,
|
||||
while prompting for a password, contrary to being inside the
|
||||
editor mode.
|
||||
If <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, the entry should be sensivive on selected "always-ask"
|
||||
icon (this is e.f. for nm-applet asking for password), otherwise
|
||||
not.
|
||||
If <a href="/usr/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, it shall not be possible to select a different storage,
|
||||
because we only prompt for a password, we cannot change the password
|
||||
location.</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-utils-menu-to-secret-flags"></a><h3>nma_utils_menu_to_secret_flags ()</h3>
|
||||
<pre class="programlisting"><a href="/usr/share/gtk-doc/html/libnm/NMSetting.html#NMSettingSecretFlags"><span class="returnvalue">NMSettingSecretFlags</span></a>
|
||||
nma_utils_menu_to_secret_flags (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="type">GtkWidget</span></a> *passwd_entry</code></em>);</pre>
|
||||
<p>Returns secret flags corresponding to the selected password storage menu
|
||||
in the attached icon</p>
|
||||
<div class="refsect3">
|
||||
<a name="nma-utils-menu-to-secret-flags.parameters"></a><h4>Parameters</h4>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="parameters_name">
|
||||
<col class="parameters_description">
|
||||
<col width="200px" class="parameters_annotations">
|
||||
</colgroup>
|
||||
<tbody><tr>
|
||||
<td class="parameter_name"><p>passwd_entry</p></td>
|
||||
<td class="parameter_description"><p>password <a href="/usr/share/gtk-doc/html/gtk4/GtkEntry.html#GtkEntry-struct"><span class="type">GtkEntry</span></a> which the password icon/menu is attached to</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr></tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
<div class="refsect3">
|
||||
<a name="nma-utils-menu-to-secret-flags.returns"></a><h4>Returns</h4>
|
||||
<p> secret flags corresponding to the active item in password menu</p>
|
||||
</div>
|
||||
</div>
|
||||
<hr>
|
||||
<div class="refsect2">
|
||||
<a name="nma-utils-update-password-storage"></a><h3>nma_utils_update_password_storage ()</h3>
|
||||
<pre class="programlisting"><span class="returnvalue">void</span>
|
||||
nma_utils_update_password_storage (<em class="parameter"><code><a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct"><span class="type">GtkWidget</span></a> *passwd_entry</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/NMSetting.html#NMSettingSecretFlags"><span class="type">NMSettingSecretFlags</span></a> secret_flags</code></em>,
|
||||
<em class="parameter"><code><a href="/usr/share/gtk-doc/html/libnm/NMSetting.html#NMSetting-struct"><span class="type">NMSetting</span></a> *setting</code></em>,
|
||||
<em class="parameter"><code>const <span class="type">char</span> *password_flags_name</code></em>);</pre>
|
||||
<p>Updates secret flags in the password storage popup menu and also
|
||||
in the <em class="parameter"><code>setting</code></em>
|
||||
(if <em class="parameter"><code>setting</code></em>
|
||||
and <em class="parameter"><code>password_flags_name</code></em>
|
||||
are not NULL).</p>
|
||||
<div class="refsect3">
|
||||
<a name="nma-utils-update-password-storage.parameters"></a><h4>Parameters</h4>
|
||||
<div class="informaltable"><table class="informaltable" width="100%" border="0">
|
||||
<colgroup>
|
||||
<col width="150px" class="parameters_name">
|
||||
<col class="parameters_description">
|
||||
<col width="200px" class="parameters_annotations">
|
||||
</colgroup>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>passwd_entry</p></td>
|
||||
<td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/gtk4/GtkEntry.html#GtkEntry-struct"><span class="type">GtkEntry</span></a> with the password</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>secret_flags</p></td>
|
||||
<td class="parameter_description"><p>secret flags to set</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>setting</p></td>
|
||||
<td class="parameter_description"><p><a href="/usr/share/gtk-doc/html/libnm/NMSetting.html#NMSetting-struct"><span class="type">NMSetting</span></a> containing the password, or NULL</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="parameter_name"><p>password_flags_name</p></td>
|
||||
<td class="parameter_description"><p>name of the secret flags (like psk-flags), or NULL</p></td>
|
||||
<td class="parameter_annotations"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="refsect1">
|
||||
<a name="libnma-nma-ui-utils.other_details"></a><h2>Types and Values</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<hr>Generated by GTK-Doc V1.29.1</div>
|
||||
</body>
|
||||
</html>
|
|
@ -0,0 +1,139 @@
|
|||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<book xmlns="http://www.devhelp.net/book" title="libnma Reference Manual" link="index.html" author="" name="libnma" version="2" language="c" online="https://gnome.pages.gitlab.gnome.org/network-manager-applet/libnma/">
|
||||
<chapters>
|
||||
<sub name="libnma API reference" link="api-reference.html">
|
||||
<sub name="nma-ui-utils" link="libnma-nma-ui-utils.html"/>
|
||||
<sub name="NMAMobileWizard" link="NMAMobileWizard.html"/>
|
||||
<sub name="NMAMobileProvidersDatabase" link="NMAMobileProvidersDatabase.html"/>
|
||||
<sub name="NMAVpnPasswordDialog" link="NMAVpnPasswordDialog.html"/>
|
||||
<sub name="NMAWifiDialog" link="NMAWifiDialog.html"/>
|
||||
<sub name="NMACertChooser" link="NMACertChooser.html"/>
|
||||
<sub name="NMABarCode" link="NMABarCode.html"/>
|
||||
</sub>
|
||||
<sub name="Object Hierarchy" link="object-tree.html"/>
|
||||
<sub name="API Index" link="api-index-full.html"/>
|
||||
<sub name="Index of API available in version 1.8.0" link="api-index-1.8.0.html"/>
|
||||
<sub name="Index of deprecated API" link="deprecated-api-index.html"/>
|
||||
<sub name="Annotation Glossary" link="annotation-glossary.html"/>
|
||||
</chapters>
|
||||
<functions>
|
||||
<keyword type="function" name="nma_utils_setup_password_storage ()" link="libnma-nma-ui-utils.html#nma-utils-setup-password-storage"/>
|
||||
<keyword type="function" name="nma_utils_menu_to_secret_flags ()" link="libnma-nma-ui-utils.html#nma-utils-menu-to-secret-flags"/>
|
||||
<keyword type="function" name="nma_utils_update_password_storage ()" link="libnma-nma-ui-utils.html#nma-utils-update-password-storage"/>
|
||||
<keyword type="function" name="NMAMobileWizardCallback ()" link="NMAMobileWizard.html#NMAMobileWizardCallback"/>
|
||||
<keyword type="function" name="nma_mobile_wizard_new ()" link="NMAMobileWizard.html#nma-mobile-wizard-new"/>
|
||||
<keyword type="function" name="nma_mobile_wizard_present ()" link="NMAMobileWizard.html#nma-mobile-wizard-present"/>
|
||||
<keyword type="function" name="nma_mobile_wizard_destroy ()" link="NMAMobileWizard.html#nma-mobile-wizard-destroy"/>
|
||||
<keyword type="struct" name="NMAMobileWizardAccessMethod" link="NMAMobileWizard.html#NMAMobileWizardAccessMethod"/>
|
||||
<keyword type="function" name="nma_mobile_access_method_ref ()" link="NMAMobileProvidersDatabase.html#nma-mobile-access-method-ref"/>
|
||||
<keyword type="function" name="nma_mobile_access_method_unref ()" link="NMAMobileProvidersDatabase.html#nma-mobile-access-method-unref"/>
|
||||
<keyword type="function" name="nma_mobile_access_method_get_name ()" link="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-name"/>
|
||||
<keyword type="function" name="nma_mobile_access_method_get_username ()" link="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-username"/>
|
||||
<keyword type="function" name="nma_mobile_access_method_get_password ()" link="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-password"/>
|
||||
<keyword type="function" name="nma_mobile_access_method_get_gateway ()" link="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-gateway"/>
|
||||
<keyword type="function" name="nma_mobile_access_method_get_dns ()" link="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-dns"/>
|
||||
<keyword type="function" name="nma_mobile_access_method_get_3gpp_apn ()" link="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-3gpp-apn"/>
|
||||
<keyword type="function" name="nma_mobile_access_method_get_family ()" link="NMAMobileProvidersDatabase.html#nma-mobile-access-method-get-family"/>
|
||||
<keyword type="function" name="nma_mobile_provider_ref ()" link="NMAMobileProvidersDatabase.html#nma-mobile-provider-ref"/>
|
||||
<keyword type="function" name="nma_mobile_provider_unref ()" link="NMAMobileProvidersDatabase.html#nma-mobile-provider-unref"/>
|
||||
<keyword type="function" name="nma_mobile_provider_get_name ()" link="NMAMobileProvidersDatabase.html#nma-mobile-provider-get-name"/>
|
||||
<keyword type="function" name="nma_mobile_provider_get_methods ()" link="NMAMobileProvidersDatabase.html#nma-mobile-provider-get-methods"/>
|
||||
<keyword type="function" name="nma_mobile_provider_get_3gpp_mcc_mnc ()" link="NMAMobileProvidersDatabase.html#nma-mobile-provider-get-3gpp-mcc-mnc"/>
|
||||
<keyword type="function" name="nma_mobile_provider_get_cdma_sid ()" link="NMAMobileProvidersDatabase.html#nma-mobile-provider-get-cdma-sid"/>
|
||||
<keyword type="function" name="nma_country_info_ref ()" link="NMAMobileProvidersDatabase.html#nma-country-info-ref"/>
|
||||
<keyword type="function" name="nma_country_info_unref ()" link="NMAMobileProvidersDatabase.html#nma-country-info-unref"/>
|
||||
<keyword type="function" name="nma_country_info_get_country_code ()" link="NMAMobileProvidersDatabase.html#nma-country-info-get-country-code"/>
|
||||
<keyword type="function" name="nma_country_info_get_country_name ()" link="NMAMobileProvidersDatabase.html#nma-country-info-get-country-name"/>
|
||||
<keyword type="function" name="nma_country_info_get_providers ()" link="NMAMobileProvidersDatabase.html#nma-country-info-get-providers"/>
|
||||
<keyword type="function" name="nma_mobile_providers_database_new ()" link="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-new"/>
|
||||
<keyword type="function" name="nma_mobile_providers_database_new_finish ()" link="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-new-finish"/>
|
||||
<keyword type="function" name="nma_mobile_providers_database_new_sync ()" link="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-new-sync"/>
|
||||
<keyword type="function" name="nma_mobile_providers_database_get_countries ()" link="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-get-countries"/>
|
||||
<keyword type="function" name="nma_mobile_providers_database_dump ()" link="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-dump"/>
|
||||
<keyword type="function" name="nma_mobile_providers_database_lookup_country ()" link="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-lookup-country"/>
|
||||
<keyword type="function" name="nma_mobile_providers_database_lookup_3gpp_mcc_mnc ()" link="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-lookup-3gpp-mcc-mnc"/>
|
||||
<keyword type="function" name="nma_mobile_providers_database_lookup_cdma_sid ()" link="NMAMobileProvidersDatabase.html#nma-mobile-providers-database-lookup-cdma-sid"/>
|
||||
<keyword type="function" name="nma_mobile_providers_split_3gpp_mcc_mnc ()" link="NMAMobileProvidersDatabase.html#nma-mobile-providers-split-3gpp-mcc-mnc"/>
|
||||
<keyword type="enum" name="enum NMAMobileFamily" link="NMAMobileProvidersDatabase.html#NMAMobileFamily"/>
|
||||
<keyword type="property" name="The “country-codes” property" link="NMAMobileProvidersDatabase.html#NMAMobileProvidersDatabase--country-codes"/>
|
||||
<keyword type="property" name="The “service-providers” property" link="NMAMobileProvidersDatabase.html#NMAMobileProvidersDatabase--service-providers"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_new ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-new"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_run_and_block ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-run-and-block"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_set_show_password ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-show-password"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_focus_password ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-focus-password"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_set_password ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_set_password_label ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-label"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_set_show_password_secondary ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-show-password-secondary"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_focus_password_secondary ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-focus-password-secondary"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_set_password_secondary ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-secondary"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_set_password_secondary_label ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-secondary-label"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_set_show_password_ternary ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-show-password-ternary"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_focus_password_ternary ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-focus-password-ternary"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_set_password_ternary ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-ternary"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_set_password_ternary_label ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-set-password-ternary-label"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_get_password ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-get-password"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_get_password_secondary ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-get-password-secondary"/>
|
||||
<keyword type="function" name="nma_vpn_password_dialog_get_password_ternary ()" link="NMAVpnPasswordDialog.html#nma-vpn-password-dialog-get-password-ternary"/>
|
||||
<keyword type="typedef" name="NMAVpnPasswordDialog" link="NMAVpnPasswordDialog.html#NMAVpnPasswordDialog"/>
|
||||
<keyword type="typedef" name="NMAVpnPasswordDialogClass" link="NMAVpnPasswordDialog.html#NMAVpnPasswordDialogClass"/>
|
||||
<keyword type="function" name="nma_wifi_dialog_new ()" link="NMAWifiDialog.html#nma-wifi-dialog-new"/>
|
||||
<keyword type="function" name="nma_wifi_dialog_new_for_secrets ()" link="NMAWifiDialog.html#nma-wifi-dialog-new-for-secrets"/>
|
||||
<keyword type="function" name="nma_wifi_dialog_new_for_hidden ()" link="NMAWifiDialog.html#nma-wifi-dialog-new-for-hidden"/>
|
||||
<keyword type="function" name="nma_wifi_dialog_new_for_create ()" link="NMAWifiDialog.html#nma-wifi-dialog-new-for-create"/>
|
||||
<keyword type="function" name="nma_wifi_dialog_get_connection ()" link="NMAWifiDialog.html#nma-wifi-dialog-get-connection"/>
|
||||
<keyword type="function" name="nma_wifi_dialog_nag_user ()" link="NMAWifiDialog.html#nma-wifi-dialog-nag-user" deprecated=""/>
|
||||
<keyword type="function" name="nma_wifi_dialog_set_nag_ignored ()" link="NMAWifiDialog.html#nma-wifi-dialog-set-nag-ignored" deprecated=""/>
|
||||
<keyword type="function" name="nma_wifi_dialog_get_nag_ignored ()" link="NMAWifiDialog.html#nma-wifi-dialog-get-nag-ignored" deprecated=""/>
|
||||
<keyword type="function" name="nma_wifi_dialog_new_for_other ()" link="NMAWifiDialog.html#nma-wifi-dialog-new-for-other" deprecated=""/>
|
||||
<keyword type="function" name="nma_cert_chooser_set_cert ()" link="NMACertChooser.html#nma-cert-chooser-set-cert" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_set_cert_uri ()" link="NMACertChooser.html#nma-cert-chooser-set-cert-uri" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_get_cert ()" link="NMACertChooser.html#nma-cert-chooser-get-cert" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_get_cert_uri ()" link="NMACertChooser.html#nma-cert-chooser-get-cert-uri" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_set_cert_password ()" link="NMACertChooser.html#nma-cert-chooser-set-cert-password" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_get_cert_password ()" link="NMACertChooser.html#nma-cert-chooser-get-cert-password" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_set_key ()" link="NMACertChooser.html#nma-cert-chooser-set-key" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_set_key_uri ()" link="NMACertChooser.html#nma-cert-chooser-set-key-uri" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_get_key ()" link="NMACertChooser.html#nma-cert-chooser-get-key" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_get_key_uri ()" link="NMACertChooser.html#nma-cert-chooser-get-key-uri" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_set_key_password ()" link="NMACertChooser.html#nma-cert-chooser-set-key-password" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_get_key_password ()" link="NMACertChooser.html#nma-cert-chooser-get-key-password" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_new ()" link="NMACertChooser.html#nma-cert-chooser-new" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_add_to_size_group ()" link="NMACertChooser.html#nma-cert-chooser-add-to-size-group" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_validate ()" link="NMACertChooser.html#nma-cert-chooser-validate" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_setup_cert_password_storage ()" link="NMACertChooser.html#nma-cert-chooser-setup-cert-password-storage" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_update_cert_password_storage ()" link="NMACertChooser.html#nma-cert-chooser-update-cert-password-storage" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_get_cert_password_flags ()" link="NMACertChooser.html#nma-cert-chooser-get-cert-password-flags" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_setup_key_password_storage ()" link="NMACertChooser.html#nma-cert-chooser-setup-key-password-storage" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_update_key_password_storage ()" link="NMACertChooser.html#nma-cert-chooser-update-key-password-storage" since="1.8.0"/>
|
||||
<keyword type="function" name="nma_cert_chooser_get_key_password_flags ()" link="NMACertChooser.html#nma-cert-chooser-get-key-password-flags" since="1.8.0"/>
|
||||
<keyword type="enum" name="enum NMACertChooserFlags" link="NMACertChooser.html#NMACertChooserFlags" since="1.8.0"/>
|
||||
<keyword type="property" name="The “flags” property" link="NMACertChooser.html#NMACertChooser--flags"/>
|
||||
<keyword type="property" name="The “title” property" link="NMACertChooser.html#NMACertChooser--title"/>
|
||||
<keyword type="signal" name="The “cert-password-validate” signal" link="NMACertChooser.html#NMACertChooser-cert-password-validate"/>
|
||||
<keyword type="signal" name="The “cert-validate” signal" link="NMACertChooser.html#NMACertChooser-cert-validate"/>
|
||||
<keyword type="signal" name="The “changed” signal" link="NMACertChooser.html#NMACertChooser-changed"/>
|
||||
<keyword type="signal" name="The “key-password-validate” signal" link="NMACertChooser.html#NMACertChooser-key-password-validate"/>
|
||||
<keyword type="signal" name="The “key-validate” signal" link="NMACertChooser.html#NMACertChooser-key-validate"/>
|
||||
<keyword type="function" name="nma_bar_code_new ()" link="NMABarCode.html#nma-bar-code-new" since="1.8.22"/>
|
||||
<keyword type="function" name="nma_bar_code_set_text ()" link="NMABarCode.html#nma-bar-code-set-text" since="1.8.22"/>
|
||||
<keyword type="function" name="nma_bar_code_get_size ()" link="NMABarCode.html#nma-bar-code-get-size" since="1.8.22"/>
|
||||
<keyword type="function" name="nma_bar_code_draw ()" link="NMABarCode.html#nma-bar-code-draw" since="1.8.22"/>
|
||||
<keyword type="macro" name="NMA_BAR_CODE_TEXT" link="NMABarCode.html#NMA-BAR-CODE-TEXT:CAPS"/>
|
||||
<keyword type="macro" name="NMA_BAR_CODE_SIZE" link="NMABarCode.html#NMA-BAR-CODE-SIZE:CAPS"/>
|
||||
<keyword type="property" name="The “size” property" link="NMABarCode.html#NMABarCode--size"/>
|
||||
<keyword type="property" name="The “text” property" link="NMABarCode.html#NMABarCode--text"/>
|
||||
<keyword type="constant" name="NMA_MOBILE_FAMILY_UNKNOWN" link="NMAMobileProvidersDatabase.html#NMA-MOBILE-FAMILY-UNKNOWN:CAPS"/>
|
||||
<keyword type="constant" name="NMA_MOBILE_FAMILY_3GPP" link="NMAMobileProvidersDatabase.html#NMA-MOBILE-FAMILY-3GPP:CAPS"/>
|
||||
<keyword type="constant" name="NMA_MOBILE_FAMILY_CDMA" link="NMAMobileProvidersDatabase.html#NMA-MOBILE-FAMILY-CDMA:CAPS"/>
|
||||
<keyword type="constant" name="NMA_CERT_CHOOSER_FLAG_NONE" link="NMACertChooser.html#NMA-CERT-CHOOSER-FLAG-NONE:CAPS"/>
|
||||
<keyword type="constant" name="NMA_CERT_CHOOSER_FLAG_CERT" link="NMACertChooser.html#NMA-CERT-CHOOSER-FLAG-CERT:CAPS"/>
|
||||
<keyword type="constant" name="NMA_CERT_CHOOSER_FLAG_PASSWORDS" link="NMACertChooser.html#NMA-CERT-CHOOSER-FLAG-PASSWORDS:CAPS"/>
|
||||
<keyword type="constant" name="NMA_CERT_CHOOSER_FLAG_PEM" link="NMACertChooser.html#NMA-CERT-CHOOSER-FLAG-PEM:CAPS"/>
|
||||
<keyword type="member" name="NMAMobileWizardAccessMethod.provider-name" link="NMAMobileWizard.html#NMAMobileWizardAccessMethod.provider-name"/>
|
||||
<keyword type="member" name="NMAMobileWizardAccessMethod.plan-name" link="NMAMobileWizard.html#NMAMobileWizardAccessMethod.plan-name"/>
|
||||
<keyword type="member" name="NMAMobileWizardAccessMethod.devtype" link="NMAMobileWizard.html#NMAMobileWizardAccessMethod.devtype"/>
|
||||
<keyword type="member" name="NMAMobileWizardAccessMethod.username" link="NMAMobileWizard.html#NMAMobileWizardAccessMethod.username"/>
|
||||
<keyword type="member" name="NMAMobileWizardAccessMethod.password" link="NMAMobileWizard.html#NMAMobileWizardAccessMethod.password"/>
|
||||
<keyword type="member" name="NMAMobileWizardAccessMethod.gsm-apn" link="NMAMobileWizard.html#NMAMobileWizardAccessMethod.gsm-apn"/>
|
||||
</functions>
|
||||
</book>
|
|
@ -0,0 +1,52 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
||||
<title>Object Hierarchy: libnma Reference Manual</title>
|
||||
<meta name="generator" content="DocBook XSL Stylesheets Vsnapshot">
|
||||
<link rel="home" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="up" href="index.html" title="libnma Reference Manual">
|
||||
<link rel="prev" href="NMABarCode.html" title="NMABarCode">
|
||||
<link rel="next" href="api-index-full.html" title="API Index">
|
||||
<meta name="generator" content="GTK-Doc V1.29.1 (XML mode)">
|
||||
<link rel="stylesheet" href="style.css" type="text/css">
|
||||
</head>
|
||||
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
||||
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
||||
<td width="100%" align="left" class="shortcuts"></td>
|
||||
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
||||
<td><img src="up-insensitive.png" width="16" height="16" border="0"></td>
|
||||
<td><a accesskey="p" href="NMABarCode.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
||||
<td><a accesskey="n" href="api-index-full.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
||||
</tr></table>
|
||||
<div class="chapter">
|
||||
<div class="titlepage"><div><div><h1 class="title">
|
||||
<a name="object-tree"></a>Object Hierarchy</h1></div></div></div>
|
||||
<pre class="screen">
|
||||
<a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject-struct">GObject</a>
|
||||
<span class="lineart">├──</span> <a class="link" href="NMABarCode.html" title="NMABarCode">NMABarCode</a>
|
||||
<span class="lineart">├──</span> <a href="/usr/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
|
||||
<span class="lineart">│</span> <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkWidget.html#GtkWidget-struct">GtkWidget</a>
|
||||
<span class="lineart">│</span> <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkContainer.html#GtkContainer-struct">GtkContainer</a>
|
||||
<span class="lineart">│</span> <span class="lineart">├──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkBox.html#GtkBox-struct">GtkBox</a>
|
||||
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> NMABarCodeWidget
|
||||
<span class="lineart">│</span> <span class="lineart">├──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkGrid.html#GtkGrid-struct">GtkGrid</a>
|
||||
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="NMACertChooser.html" title="NMACertChooser">NMACertChooser</a>
|
||||
<span class="lineart">│</span> <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkBin.html#GtkBin-struct">GtkBin</a>
|
||||
<span class="lineart">│</span> <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkWindow.html#GtkWindow-struct">GtkWindow</a>
|
||||
<span class="lineart">│</span> <span class="lineart">├──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkAssistant.html#GtkAssistant-struct">GtkAssistant</a>
|
||||
<span class="lineart">│</span> <span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="NMAMobileWizard.html" title="NMAMobileWizard">NMAMobileWizard</a>
|
||||
<span class="lineart">│</span> <span class="lineart">╰──</span> <a href="/usr/share/gtk-doc/html/gtk4/GtkDialog.html#GtkDialog-struct">GtkDialog</a>
|
||||
<span class="lineart">│</span> <span class="lineart">├──</span> <a class="link" href="NMAVpnPasswordDialog.html" title="NMAVpnPasswordDialog">NMAVpnPasswordDialog</a>
|
||||
<span class="lineart">│</span> <span class="lineart">╰──</span> <a class="link" href="NMAWifiDialog.html" title="NMAWifiDialog">NMAWifiDialog</a>
|
||||
<span class="lineart">╰──</span> <a class="link" href="NMAMobileProvidersDatabase.html" title="NMAMobileProvidersDatabase">NMAMobileProvidersDatabase</a>
|
||||
<a href="/usr/share/gtk-doc/html/gobject/gobject-Boxed-Types.html">GBoxed</a>
|
||||
<span class="lineart">├──</span> <a class="link" href="NMAMobileProvidersDatabase.html#NMACountryInfo">NMACountryInfo</a>
|
||||
<span class="lineart">├──</span> <a class="link" href="NMAMobileProvidersDatabase.html#NMAMobileAccessMethod">NMAMobileAccessMethod</a>
|
||||
<span class="lineart">╰──</span> <a class="link" href="NMAMobileProvidersDatabase.html#NMAMobileProvider">NMAMobileProvider</a>
|
||||
</pre>
|
||||
</div>
|
||||
<div class="footer">
|
||||
<hr>Generated by GTK-Doc V1.29.1</div>
|
||||
</body>
|
||||
</html>
|
After Width: | Height: | Size: 373 B |
After Width: | Height: | Size: 261 B |
|
@ -0,0 +1,533 @@
|
|||
body
|
||||
{
|
||||
font-family: cantarell, sans-serif;
|
||||
}
|
||||
.synopsis, .classsynopsis
|
||||
{
|
||||
/* tango:aluminium 1/2 */
|
||||
background: #eeeeec;
|
||||
background: rgba(238, 238, 236, 0.5);
|
||||
border: solid 1px rgb(238, 238, 236);
|
||||
padding: 0.5em;
|
||||
}
|
||||
.programlisting
|
||||
{
|
||||
/* tango:sky blue 0/1 */
|
||||
/* fallback for no rgba support */
|
||||
background: #e6f3ff;
|
||||
border: solid 1px #729fcf;
|
||||
background: rgba(114, 159, 207, 0.1);
|
||||
border: solid 1px rgba(114, 159, 207, 0.2);
|
||||
padding: 0.5em;
|
||||
}
|
||||
.variablelist
|
||||
{
|
||||
padding: 4px;
|
||||
margin-left: 3em;
|
||||
}
|
||||
.variablelist td:first-child
|
||||
{
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
span.nowrap {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
div.gallery-float
|
||||
{
|
||||
float: left;
|
||||
padding: 10px;
|
||||
}
|
||||
div.gallery-float img
|
||||
{
|
||||
border-style: none;
|
||||
}
|
||||
div.gallery-spacer
|
||||
{
|
||||
clear: both;
|
||||
}
|
||||
|
||||
a, a:visited
|
||||
{
|
||||
text-decoration: none;
|
||||
/* tango:sky blue 2 */
|
||||
color: #3465a4;
|
||||
}
|
||||
a:hover
|
||||
{
|
||||
text-decoration: underline;
|
||||
/* tango:sky blue 1 */
|
||||
color: #729fcf;
|
||||
}
|
||||
|
||||
div.informaltable table
|
||||
{
|
||||
border-collapse: separate;
|
||||
border-spacing: 1em 0.3em;
|
||||
border: none;
|
||||
}
|
||||
|
||||
div.informaltable table td, div.informaltable table th
|
||||
{
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.function_type,
|
||||
.variable_type,
|
||||
.property_type,
|
||||
.signal_type,
|
||||
.parameter_name,
|
||||
.struct_member_name,
|
||||
.union_member_name,
|
||||
.define_keyword,
|
||||
.datatype_keyword,
|
||||
.typedef_keyword
|
||||
{
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
/* dim non-primary columns */
|
||||
.c_punctuation,
|
||||
.function_type,
|
||||
.variable_type,
|
||||
.property_type,
|
||||
.signal_type,
|
||||
.define_keyword,
|
||||
.datatype_keyword,
|
||||
.typedef_keyword,
|
||||
.property_flags,
|
||||
.signal_flags,
|
||||
.parameter_annotations,
|
||||
.enum_member_annotations,
|
||||
.struct_member_annotations,
|
||||
.union_member_annotations
|
||||
{
|
||||
color: #888a85;
|
||||
}
|
||||
|
||||
.function_type a,
|
||||
.function_type a:visited,
|
||||
.function_type a:hover,
|
||||
.property_type a,
|
||||
.property_type a:visited,
|
||||
.property_type a:hover,
|
||||
.signal_type a,
|
||||
.signal_type a:visited,
|
||||
.signal_type a:hover,
|
||||
.signal_flags a,
|
||||
.signal_flags a:visited,
|
||||
.signal_flags a:hover
|
||||
{
|
||||
color: #729fcf;
|
||||
}
|
||||
|
||||
td p
|
||||
{
|
||||
margin: 0.25em;
|
||||
}
|
||||
|
||||
div.table table
|
||||
{
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
/* tango:aluminium 3 */
|
||||
border: solid 1px #babdb6;
|
||||
}
|
||||
|
||||
div.table table td, div.table table th
|
||||
{
|
||||
/* tango:aluminium 3 */
|
||||
border: solid 1px #babdb6;
|
||||
padding: 3px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
div.table table th
|
||||
{
|
||||
/* tango:aluminium 2 */
|
||||
background-color: #d3d7cf;
|
||||
}
|
||||
|
||||
h4
|
||||
{
|
||||
color: #555753;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
hr
|
||||
{
|
||||
/* tango:aluminium 1 */
|
||||
color: #d3d7cf;
|
||||
background: #d3d7cf;
|
||||
border: none 0px;
|
||||
height: 1px;
|
||||
clear: both;
|
||||
margin: 2.0em 0em 2.0em 0em;
|
||||
}
|
||||
|
||||
dl.toc dt
|
||||
{
|
||||
padding-bottom: 0.25em;
|
||||
}
|
||||
|
||||
dl.toc > dt
|
||||
{
|
||||
padding-top: 0.25em;
|
||||
padding-bottom: 0.25em;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
dl.toc > dl
|
||||
{
|
||||
padding-bottom: 0.5em;
|
||||
}
|
||||
|
||||
.parameter
|
||||
{
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.footer
|
||||
{
|
||||
padding-top: 3.5em;
|
||||
/* tango:aluminium 3 */
|
||||
color: #babdb6;
|
||||
text-align: center;
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
.informalfigure,
|
||||
.figure
|
||||
{
|
||||
margin: 1em;
|
||||
}
|
||||
|
||||
.informalexample,
|
||||
.example
|
||||
{
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.warning
|
||||
{
|
||||
/* tango:orange 0/1 */
|
||||
background: #ffeed9;
|
||||
background: rgba(252, 175, 62, 0.1);
|
||||
border-color: #ffb04f;
|
||||
border-color: rgba(252, 175, 62, 0.2);
|
||||
}
|
||||
.note
|
||||
{
|
||||
/* tango:chameleon 0/0.5 */
|
||||
background: #d8ffb2;
|
||||
background: rgba(138, 226, 52, 0.1);
|
||||
border-color: #abf562;
|
||||
border-color: rgba(138, 226, 52, 0.2);
|
||||
}
|
||||
div.blockquote
|
||||
{
|
||||
border-color: #eeeeec;
|
||||
}
|
||||
.note, .warning, div.blockquote
|
||||
{
|
||||
padding: 0.5em;
|
||||
border-width: 1px;
|
||||
border-style: solid;
|
||||
margin: 2em;
|
||||
}
|
||||
.note p, .warning p
|
||||
{
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div.warning h3.title,
|
||||
div.note h3.title
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
p + div.section
|
||||
{
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
div.refnamediv,
|
||||
div.refsynopsisdiv,
|
||||
div.refsect1,
|
||||
div.refsect2,
|
||||
div.toc,
|
||||
div.section
|
||||
{
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
/* blob links */
|
||||
h2 .extralinks, h3 .extralinks
|
||||
{
|
||||
float: right;
|
||||
/* tango:aluminium 3 */
|
||||
color: #babdb6;
|
||||
font-size: 80%;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.lineart
|
||||
{
|
||||
color: #d3d7cf;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.annotation
|
||||
{
|
||||
/* tango:aluminium 5 */
|
||||
color: #555753;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.structfield
|
||||
{
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
acronym,abbr
|
||||
{
|
||||
border-bottom: 1px dotted gray;
|
||||
}
|
||||
|
||||
.listing_frame {
|
||||
/* tango:sky blue 1 */
|
||||
border: solid 1px #729fcf;
|
||||
border: solid 1px rgba(114, 159, 207, 0.2);
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.listing_lines, .listing_code {
|
||||
margin-top: 0px;
|
||||
margin-bottom: 0px;
|
||||
padding: 0.5em;
|
||||
}
|
||||
.listing_lines {
|
||||
/* tango:sky blue 0.5 */
|
||||
background: #a6c5e3;
|
||||
background: rgba(114, 159, 207, 0.2);
|
||||
/* tango:aluminium 6 */
|
||||
color: #2e3436;
|
||||
}
|
||||
.listing_code {
|
||||
/* tango:sky blue 0 */
|
||||
background: #e6f3ff;
|
||||
background: rgba(114, 159, 207, 0.1);
|
||||
}
|
||||
.listing_code .programlisting {
|
||||
/* override from previous */
|
||||
border: none 0px;
|
||||
padding: 0px;
|
||||
background: none;
|
||||
}
|
||||
.listing_lines pre, .listing_code pre {
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
@media screen {
|
||||
/* these have a <sup> as a first child, but since there are no parent selectors
|
||||
* we can't use that. */
|
||||
a.footnote
|
||||
{
|
||||
position: relative;
|
||||
top: 0em ! important;
|
||||
}
|
||||
/* this is needed so that the local anchors are displayed below the naviagtion */
|
||||
div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
|
||||
{
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
top:-5em;
|
||||
}
|
||||
/* this seems to be a bug in the xsl style sheets when generating indexes */
|
||||
div.index div.index
|
||||
{
|
||||
top: 0em;
|
||||
}
|
||||
/* make space for the fixed navigation bar and add space at the bottom so that
|
||||
* link targets appear somewhat close to top
|
||||
*/
|
||||
body
|
||||
{
|
||||
padding-top: 2.5em;
|
||||
padding-bottom: 500px;
|
||||
max-width: 60em;
|
||||
}
|
||||
p
|
||||
{
|
||||
max-width: 60em;
|
||||
}
|
||||
/* style and size the navigation bar */
|
||||
table.navigation#top
|
||||
{
|
||||
position: fixed;
|
||||
background: #e2e2e2;
|
||||
border-bottom: solid 1px #babdb6;
|
||||
border-spacing: 5px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 10;
|
||||
}
|
||||
table.navigation#top td
|
||||
{
|
||||
padding-left: 6px;
|
||||
padding-right: 6px;
|
||||
}
|
||||
.navigation a, .navigation a:visited
|
||||
{
|
||||
/* tango:sky blue 3 */
|
||||
color: #204a87;
|
||||
}
|
||||
.navigation a:hover
|
||||
{
|
||||
/* tango:sky blue 2 */
|
||||
color: #3465a4;
|
||||
}
|
||||
td.shortcuts
|
||||
{
|
||||
/* tango:sky blue 2 */
|
||||
color: #3465a4;
|
||||
font-size: 80%;
|
||||
white-space: nowrap;
|
||||
}
|
||||
td.shortcuts .dim
|
||||
{
|
||||
color: #babdb6;
|
||||
}
|
||||
.navigation .title
|
||||
{
|
||||
font-size: 80%;
|
||||
max-width: none;
|
||||
margin: 0px;
|
||||
font-weight: normal;
|
||||
}
|
||||
}
|
||||
@media screen and (min-width: 60em) {
|
||||
/* screen larger than 60em */
|
||||
body { margin: auto; }
|
||||
}
|
||||
@media screen and (max-width: 60em) {
|
||||
/* screen less than 60em */
|
||||
#nav_hierarchy { display: none; }
|
||||
#nav_interfaces { display: none; }
|
||||
#nav_prerequisites { display: none; }
|
||||
#nav_derived_interfaces { display: none; }
|
||||
#nav_implementations { display: none; }
|
||||
#nav_child_properties { display: none; }
|
||||
#nav_style_properties { display: none; }
|
||||
#nav_index { display: none; }
|
||||
#nav_glossary { display: none; }
|
||||
.gallery_image { display: none; }
|
||||
.property_flags { display: none; }
|
||||
.signal_flags { display: none; }
|
||||
.parameter_annotations { display: none; }
|
||||
.enum_member_annotations { display: none; }
|
||||
.struct_member_annotations { display: none; }
|
||||
.union_member_annotations { display: none; }
|
||||
/* now that a column is hidden, optimize space */
|
||||
col.parameters_name { width: auto; }
|
||||
col.parameters_description { width: auto; }
|
||||
col.struct_members_name { width: auto; }
|
||||
col.struct_members_description { width: auto; }
|
||||
col.enum_members_name { width: auto; }
|
||||
col.enum_members_description { width: auto; }
|
||||
col.union_members_name { width: auto; }
|
||||
col.union_members_description { width: auto; }
|
||||
.listing_lines { display: none; }
|
||||
}
|
||||
@media print {
|
||||
table.navigation {
|
||||
visibility: collapse;
|
||||
display: none;
|
||||
}
|
||||
div.titlepage table.navigation {
|
||||
visibility: visible;
|
||||
display: table;
|
||||
background: #e2e2e2;
|
||||
border: solid 1px #babdb6;
|
||||
margin-top: 0;
|
||||
margin-bottom: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 3em;
|
||||
}
|
||||
}
|
||||
|
||||
.hll { background-color: #ffffcc }
|
||||
.c { color: #408080; font-style: italic } /* Comment */
|
||||
.err { border: 1px solid #FF0000 } /* Error */
|
||||
.k { color: #008000; font-weight: bold } /* Keyword */
|
||||
.o { color: #666666 } /* Operator */
|
||||
.ch { color: #408080; font-style: italic } /* Comment.Hashbang */
|
||||
.cm { color: #408080; font-style: italic } /* Comment.Multiline */
|
||||
.cp { color: #BC7A00 } /* Comment.Preproc */
|
||||
.cpf { color: #408080; font-style: italic } /* Comment.PreprocFile */
|
||||
.c1 { color: #408080; font-style: italic } /* Comment.Single */
|
||||
.cs { color: #408080; font-style: italic } /* Comment.Special */
|
||||
.gd { color: #A00000 } /* Generic.Deleted */
|
||||
.ge { font-style: italic } /* Generic.Emph */
|
||||
.gr { color: #FF0000 } /* Generic.Error */
|
||||
.gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
||||
.gi { color: #00A000 } /* Generic.Inserted */
|
||||
.go { color: #888888 } /* Generic.Output */
|
||||
.gp { color: #000080; font-weight: bold } /* Generic.Prompt */
|
||||
.gs { font-weight: bold } /* Generic.Strong */
|
||||
.gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
||||
.gt { color: #0044DD } /* Generic.Traceback */
|
||||
.kc { color: #008000; font-weight: bold } /* Keyword.Constant */
|
||||
.kd { color: #008000; font-weight: bold } /* Keyword.Declaration */
|
||||
.kn { color: #008000; font-weight: bold } /* Keyword.Namespace */
|
||||
.kp { color: #008000 } /* Keyword.Pseudo */
|
||||
.kr { color: #008000; font-weight: bold } /* Keyword.Reserved */
|
||||
.kt { color: #B00040 } /* Keyword.Type */
|
||||
.m { color: #666666 } /* Literal.Number */
|
||||
.s { color: #BA2121 } /* Literal.String */
|
||||
.na { color: #7D9029 } /* Name.Attribute */
|
||||
.nb { color: #008000 } /* Name.Builtin */
|
||||
.nc { color: #0000FF; font-weight: bold } /* Name.Class */
|
||||
.no { color: #880000 } /* Name.Constant */
|
||||
.nd { color: #AA22FF } /* Name.Decorator */
|
||||
.ni { color: #999999; font-weight: bold } /* Name.Entity */
|
||||
.ne { color: #D2413A; font-weight: bold } /* Name.Exception */
|
||||
.nf { color: #0000FF } /* Name.Function */
|
||||
.nl { color: #A0A000 } /* Name.Label */
|
||||
.nn { color: #0000FF; font-weight: bold } /* Name.Namespace */
|
||||
.nt { color: #008000; font-weight: bold } /* Name.Tag */
|
||||
.nv { color: #19177C } /* Name.Variable */
|
||||
.ow { color: #AA22FF; font-weight: bold } /* Operator.Word */
|
||||
.w { color: #bbbbbb } /* Text.Whitespace */
|
||||
.mb { color: #666666 } /* Literal.Number.Bin */
|
||||
.mf { color: #666666 } /* Literal.Number.Float */
|
||||
.mh { color: #666666 } /* Literal.Number.Hex */
|
||||
.mi { color: #666666 } /* Literal.Number.Integer */
|
||||
.mo { color: #666666 } /* Literal.Number.Oct */
|
||||
.sa { color: #BA2121 } /* Literal.String.Affix */
|
||||
.sb { color: #BA2121 } /* Literal.String.Backtick */
|
||||
.sc { color: #BA2121 } /* Literal.String.Char */
|
||||
.dl { color: #BA2121 } /* Literal.String.Delimiter */
|
||||
.sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */
|
||||
.s2 { color: #BA2121 } /* Literal.String.Double */
|
||||
.se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */
|
||||
.sh { color: #BA2121 } /* Literal.String.Heredoc */
|
||||
.si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */
|
||||
.sx { color: #008000 } /* Literal.String.Other */
|
||||
.sr { color: #BB6688 } /* Literal.String.Regex */
|
||||
.s1 { color: #BA2121 } /* Literal.String.Single */
|
||||
.ss { color: #19177C } /* Literal.String.Symbol */
|
||||
.bp { color: #008000 } /* Name.Builtin.Pseudo */
|
||||
.fm { color: #0000FF } /* Name.Function.Magic */
|
||||
.vc { color: #19177C } /* Name.Variable.Class */
|
||||
.vg { color: #19177C } /* Name.Variable.Global */
|
||||
.vi { color: #19177C } /* Name.Variable.Instance */
|
||||
.vm { color: #19177C } /* Name.Variable.Magic */
|
||||
.il { color: #666666 } /* Literal.Number.Integer.Long */
|
After Width: | Height: | Size: 374 B |
After Width: | Height: | Size: 260 B |
After Width: | Height: | Size: 473 B |
After Width: | Height: | Size: 601 B |
After Width: | Height: | Size: 595 B |
After Width: | Height: | Size: 748 B |
After Width: | Height: | Size: 945 B |
After Width: | Height: | Size: 672 B |
After Width: | Height: | Size: 817 B |
After Width: | Height: | Size: 267 B |
After Width: | Height: | Size: 811 B |
After Width: | Height: | Size: 335 B |
After Width: | Height: | Size: 775 B |
After Width: | Height: | Size: 494 B |
After Width: | Height: | Size: 688 B |
After Width: | Height: | Size: 413 B |
After Width: | Height: | Size: 779 B |
After Width: | Height: | Size: 500 B |
After Width: | Height: | Size: 770 B |
After Width: | Height: | Size: 496 B |
After Width: | Height: | Size: 747 B |
After Width: | Height: | Size: 474 B |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.1 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 1.2 KiB |
After Width: | Height: | Size: 209 B |