For a Monte-Carlo integration of
$$\int_\Omega P(x)f(x)\ \text d x,$$
there seems to be no apriori distinction if $f$ or $P$ is the probability function. So does it matter if I consider
$$P, f, P f, \text{ or 1 over all of } \Omega$$
to be the distribution function I draw the random points $x$ from, given that I use the complement function as object to plug these values in?
The short answer is no, it does not matter which probability density function you use.
There are two properties that a density function $f$ must have:
If $P(x)$, $P(x)f(x)$ or 1 satisfy both conditions, then yes they can be used for the density of the sampling distribution.
If a function $g(x)$ satisfies just the first condition, and has a finite integral over $\Omega$, then there is some normalizing coefficient $c$ that will make $$\int_\Omega \frac{g(x)}{c}dx=1$$
This is particularly interesting if you choose $g(x)=P(x)f(x)$ then your integral becomes $$\int_\Omega c \frac{g(x)}{c} dx$$ drawing samples $x_i$ from a probability distribution with density $g$, and evaluing the constant $c$ at each $x_i$ you get a Monte Carlo estimate with variance 0! Which would gbe a good thing except that your normalizing constant $c$ is just the integral you started with.
In the technique called Importance Sampling one deliberately chooses a density $g$ different from $f$ and computes the integral $$\int_\Omega \frac{P(x)f(x)}{g(x)}g(x)dx$$ by sampling from $g$. With a well chosen $g$ one can often get a much better estimate than straight a Monte Carlo estimation.