The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Padre::Wx::Nth;

# Provides rules and functionality to be triggered on a particular
# numbered startup of Padre.

use 5.008;
use strict;
use warnings;

our $VERSION = '0.96';

# Even if more than one rule matches, only ever bother the user once
# during a single instance of Padre. Multiple popups suck.
sub nth {
	my $class  = shift;
	my $main   = shift;
	my $nth    = shift;
	my $config = $main->config;

	# Is it Padre's birthday?
	my @t = localtime time;
	if ( $t[4] == 6 and $t[3] == 20 ) {

		# If we have already shown the birthday popup this year,
		# don't show it again. And don't bug the user about anything else
		# on our birthday so we don't spoil the party.
		my $year = $t[5] + 1900;
		return 1 if $config->nth_birthday == $year;

		# Save the new nth_birthday value now in case something goes wrong,
		# so we don't get locked into a crashing loop.
		$config->set( nth_birthday => $year );
		$config->write;

		# Ask if they want to come to the party
		my $rv = $main->yes_no(
			"Today is Padre's Birthday!\n" . "Would you like join the party and thank the developers?",
			"OMG!",
		);
		$main->action('help.live_support') if $rv;
		return 1;
	}

	#	if ( $nth > 2 and not $config->nth_feedback ) {
	#		require Padre::Wx::Dialog::WhereFrom;
	#		my $dialog = Padre::Wx::Dialog::WhereFrom->new($main);
	#		$dialog->run;
	#		$dialog->Destroy;
	#		return 1;
	#	}

	return 1;
}

1;

# Copyright 2008-2012 The Padre development team as listed in Padre.pm.
# LICENSE
# This program is free software; you can redistribute it and/or
# modify it under the same terms as Perl 5 itself.