Synchronized with trunk
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1171 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
commit
9c959777d3
10 changed files with 1637 additions and 353 deletions
1513
CSFML/doc/build/Doxyfile
vendored
Normal file
1513
CSFML/doc/build/Doxyfile
vendored
Normal file
File diff suppressed because it is too large
Load diff
95
CSFML/doc/build/Doxygen.hpp
vendored
Normal file
95
CSFML/doc/build/Doxygen.hpp
vendored
Normal file
|
@ -0,0 +1,95 @@
|
|||
////////////////////////////////////////////////////////////
|
||||
/// \mainpage
|
||||
///
|
||||
/// \section welcome Welcome
|
||||
/// Welcome to the official SFML documentation for C. Here you will find a detailed
|
||||
/// view of all the SFML <a href="./globals_func.htm">functions</a>, as well as source
|
||||
/// <a href="./files.htm">files</a>. <br/>
|
||||
/// If you are looking for tutorials, you can visit the official website
|
||||
/// at <a href="http://www.sfml-dev.org/tutorials/">www.sfml-dev.org</a>.
|
||||
///
|
||||
/// \section example Short example
|
||||
/// Here is a short example, to show you how simple it is to use SFML in C :
|
||||
///
|
||||
/// \code
|
||||
///
|
||||
/// #include <SFML/Audio.h>
|
||||
/// #include <SFML/Graphics.h>
|
||||
///
|
||||
/// int main()
|
||||
/// {
|
||||
/// sfWindowSettings settings = {24, 8, 0};
|
||||
/// sfVideoMode mode = {800, 600, 32};
|
||||
/// sfRenderWindow* window;
|
||||
/// sfImage* image;
|
||||
/// sfSprite* sprite;
|
||||
/// sfFont* font;
|
||||
/// sfString* text;
|
||||
/// sfMusic* music;
|
||||
/// sfEvent event;
|
||||
///
|
||||
/// /* Create the main window */
|
||||
/// window = sfRenderWindow_Create(mode, "SFML window", sfResize | sfClose, settings);
|
||||
/// if (!window)
|
||||
/// return EXIT_FAILURE;
|
||||
///
|
||||
/// /* Load a sprite to display */
|
||||
/// image = sfImage_CreateFromFile("cute_image.jpg");
|
||||
/// if (!image)
|
||||
/// return EXIT_FAILURE;
|
||||
/// sprite = sfSprite_Create();
|
||||
/// sfSprite_SetImage(sprite, image);
|
||||
///
|
||||
/// /* Create a graphical string to display */
|
||||
/// font = sfFont_CreateFromFile("arial.ttf", 50, NULL);
|
||||
/// if (!font)
|
||||
/// return EXIT_FAILURE;
|
||||
/// text = sfString_Create();
|
||||
/// sfString_SetText(text, "Hello SFML");
|
||||
/// sfString_SetFont(text, font);
|
||||
/// sfString_SetSize(text, 50);
|
||||
///
|
||||
/// /* Load a music to play */
|
||||
/// music = sfMusic_CreateFromFile("nice_music.ogg");
|
||||
/// if (!music)
|
||||
/// return EXIT_FAILURE;
|
||||
///
|
||||
/// /* Play the music */
|
||||
/// sfMusic_Play(music);
|
||||
///
|
||||
/// /* Start the game loop */
|
||||
/// while (sfRenderWindow_IsOpened(window))
|
||||
/// {
|
||||
/// /* Process events */
|
||||
/// while (sfRenderWindow_GetEvent(window, &event))
|
||||
/// {
|
||||
/// /* Close window : exit */
|
||||
/// if (event.Type == sfEvtClosed)
|
||||
/// sfRenderWindow_Close(window);
|
||||
/// }
|
||||
///
|
||||
/// /* Clear the screen */
|
||||
/// sfRenderWindow_Clear(window, sfBlack);
|
||||
///
|
||||
/// /* Draw the sprite */
|
||||
/// sfRenderWindow_DrawSprite(window, sprite);
|
||||
///
|
||||
/// /* Draw the string */
|
||||
/// sfRenderWindow_DrawString(window, text);
|
||||
///
|
||||
/// /* Update the window */
|
||||
/// sfRenderWindow_Display(window);
|
||||
/// }
|
||||
///
|
||||
/// /* Cleanup resources */
|
||||
/// sfMusic_Destroy(music);
|
||||
/// sfString_Destroy(text);
|
||||
/// sfFont_Destroy(font);
|
||||
/// sfSprite_Destroy(sprite);
|
||||
/// sfImage_Destroy(image);
|
||||
/// sfRenderWindow_Destroy(window);
|
||||
///
|
||||
/// return EXIT_SUCCESS;
|
||||
/// }
|
||||
/// \endcode
|
||||
////////////////////////////////////////////////////////////
|
8
CSFML/doc/build/footer.htm
vendored
Normal file
8
CSFML/doc/build/footer.htm
vendored
Normal file
|
@ -0,0 +1,8 @@
|
|||
|
||||
<p id="footer">
|
||||
:: Copyright © 2007 Laurent Gomila, all rights reserved ::
|
||||
Documentation generated by <a href="http://www.doxygen.org/" title="doxygen website">doxygen 1.5.2</a> ::
|
||||
</p>
|
||||
|
||||
</body>
|
||||
</html>
|
12
CSFML/doc/build/header.htm
vendored
Normal file
12
CSFML/doc/build/header.htm
vendored
Normal file
|
@ -0,0 +1,12 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<html>
|
||||
<head>
|
||||
<title>SFML - Simple and Fast Multimedia Library</title>
|
||||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
|
||||
<link href="doxygen.css" rel="stylesheet" type="text/css" />
|
||||
<link href="tabs.css" rel="stylesheet" type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<div id="logo">
|
||||
<img src="./logo.jpg" width="770" height="200" title="SFML home" alt="SFML logo" />
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue