This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*--- waitForKeyElements(): A utility function, for Greasemonkey scripts, | |
that detects and handles AJAXed content. | |
Usage example: | |
waitForKeyElements ( | |
"div.comments" | |
, commentCallbackFunction | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Created by SharpDevelop. | |
* User: EnterTheNameHere | |
* Date: 25.10. 2012 | |
* Time: 15:53 | |
* | |
*/ | |
using System; | |
using System.Collections.Generic; | |
using System.Windows.Forms; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Created by SharpDevelop. | |
* User: EnterTheNameHere | |
* Date: 16.10. 2012 | |
* Time: 16:48 | |
* | |
*/ | |
using System; | |
using System.Collections.Generic; | |
using System.Security.Cryptography; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define SFML_STATIC | |
#include <SFML/Graphics.hpp> | |
#define SFGUI_STATIC | |
#include <SFGUI/SFGUI.hpp> | |
const int SCREEN_WIDTH = 800; | |
const int SCREEN_HEIGHT = 600; | |
class ButtonExample { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef RESIZABLEIMAGE_HPP_INCLUDED_2240 | |
#define RESIZABLEIMAGE_HPP_INCLUDED_2240 | |
#pragma once | |
#include <SFGUI/Image.hpp> | |
#include <SFGUI/SharedPtr.hpp> | |
namespace sfg | |
{ | |
/** |